Official Link for Standard LogicApp

Anonymous
2023-07-06T13:37:26.0533333+00:00

I referred this blog when will this document be available.

https://learn.microsoft.com/en-us/answers/questions/728918/is-there-a-workflow-rest-api-for-logic-app-standar

@Robert Lawrie Thanks for reaching out. The standard logic app is built on top of function runtime and it uses the same function REST API. The API is not yet available for consumption and therefore it is not documented as of now. For now, the workaround would be finding the REST API calls using the browser traces or fiddler traces that are initiated from the portal. For your reference sharing the REST calls as per your requirement and you need to pass the Authorization: Bearer <bearer-token> as documented here for any azure management REST call.

Get all workflow details for a particular standard logic app name:
GET
/subscriptions/{subscription ID}/resourceGroups/{resourcegroup name}/providers/Microsoft.Web/sites/{standard logicapp name}/workflows?api-version=2018-11-01

Get details with workflow name:
GET
/subscriptions/{subscription ID}/resourceGroups/{resourcegroup name}/providers/Microsoft.Web/sites/{standard logicapp name}/workflows/{workflow name}?api-version=2018-11-01

You can refer to flowState parameter on the above REST call to get the status of the workflow.

Get Run history for a particular workflow:
GET
/subscriptions/{subscription ID}/resourceGroups/{resourcegroup name}/providers/Microsoft.Web/sites/{standard logicapp name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflow name}/runs?api-version=2018-11-01

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
{count} votes

1 answer

Sort by: Most helpful
  1. MuthuKumaranMurugaachari-MSFT 22,446 Reputation points Moderator
    2023-07-12T13:46:06.16+00:00

    Nagarajan Kuppuswamy The Logic Apps Standard Rest APIs are under App Services and here is the link for reference: https://learn.microsoft.com/en-us/rest/api/appservice/workflows. One of our MVPs wrote a good blog post regarding this blog post link.

    [image

    ](https://user-images.githubusercontent.com/95652148/252986393-2bcb5c2a-659d-445e-a6a9-7dff398e362f.png)

    However, I understand you are looking for official documentation/reference and totally agree with you and really appreciate your feedback. I passed on the feedback to our product team and based on the discussion, opened https://github.com/MicrosoftDocs/azure-docs/issues/112086 for our doc team to review and update as appropriate. Please follow this item for the updates.

    I hope this helps and let me know if you have any questions.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.