Ilya Usov
Ilya Usov

Reputation: 31

Is there a management API for Standard Logic Apps?

There is a Logic Apps management API (https://learn.microsoft.com/en-us/rest/api/logic/workflows)

As far as I understood you cannot use the service to access Standard Logic Apps. Is there a work around? Basically I need to retrieve a few days of action outputs of my running workflow. TIA

Upvotes: 1

Views: 315

Answers (1)

SwethaKandikonda
SwethaKandikonda

Reputation: 8254

Basically I need to retrieve a few days of action outputs of my running workflow.

Like mentioned by @Thomas, One of the workarounds is to enable application insights from your logic apps and then retrieve the action outputs of your workflow in log analytics using KQL.

enter image description here

In Application Insights, I'm using the below query to get the information about each and every action where its state is in Running.

traces 
| where cloud_RoleName == "<Your_LogicApp_Name>"
| where message contains "Running"
| where operation_Name  != ""

enter image description here

Upvotes: 0

Related Questions