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.
Retrieve Azure LogicApp's Connector metadata using C# SDK
Asked Answered
I guess you are looking for ListOperations which will have the metadata
url = self.list_operations.metadata['url']
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. –
Garbers
© 2022 - 2024 — McMap. All rights reserved.
API connector
for O365 using ARM Template ? – Pedicle