6

Can I retrieve metadata of Connector of a Logic App using C# SDK ? Am getting logic app using: Microsoft.Azure.Management.Logic.LogicManagementClient.Workflows.Get(resourceGroupName, logicAppName), but this just gives details of App and does not tell how to read metadata of connector.

Vidhya Sagar Reddy
  • 1,521
  • 1
  • 13
  • 25
  • what are you trying to achieve ? – Thomas Aug 29 '18 at 23:54
  • Need to pull metadata of LogicApp. Assuming I created a Logic App against O365 Users Create action, I should be able to pull metadata of O365 create action etc. – Vidhya Sagar Reddy Sep 05 '18 at 08:54
  • What do you mean by metadata ? Logs ? – Thomas Sep 05 '18 at 09:11
  • As said, in above comment, i need to see what all parameters does O365 Create action accepts – Vidhya Sagar Reddy Sep 05 '18 at 10:30
  • Sorry it is very unclear what's your asking for.. Your wants to know how to create the `API connector` for O365 using ARM Template ? – Thomas Sep 05 '18 at 11:15
  • Let me be more clear. I have created Logic App, which says, when a HTTP POST request is received(Trigger), it should create a O365 User(Action). Now from C# SDK, I want to pull what parameters will this Action require and type of those, which basically means metadata. – Vidhya Sagar Reddy Sep 05 '18 at 11:22

1 Answers1

0

I guess you are looking for ListOperations which will have the metadata

 url = self.list_operations.metadata['url']

SAMPLE REPOSITORY

Sajeetharan
  • 216,225
  • 63
  • 350
  • 396
  • Am looking for metadata on the Connector(s); not the Logic App itself. For instance, I need to retrieve all operations supported by "Azure AD" Connector. And the next level would be, to retrieve metadata supported by an action on the AzureAD connector. – Vidhya Sagar Reddy Aug 14 '19 at 04:17