Azure Logic Apps Standard REST APIs (Part II)

  • Sandro Pereira
  • Jan 11, 2023
  • 11 min read

In my last blog post, I documented the Workflow Run Actions REST APIs for Logic App Standard. You can read more about it here: Azure Logic Apps Standard REST APIs (Part I).

📝 One-Minute Brief

A deep dive into the Workflow Runs REST APIs for Azure Logic Apps Standard. This article explains how to list, retrieve, cancel, and delete workflow runs by using undocumented REST endpoints that differ from the Logic Apps Consumption model. It provides practical examples and request URLs to help you manage and troubleshoot Logic App Standard executions programmatically.

REST Operation Groups

Like Logic Apps Consumption, Logic App Standard REST APIs are organized in these REST Operation Groups:

  • Workflow Run Actions: Lists workflow run actions.
  • Workflow Runs: Provides operations for listing and canceling workflow runs.
  • Workflow Trigger Histories: Lists workflow trigger histories.
  • Workflow Triggers: Provides operations for listing and running workflow triggers.
  • Workflow Versions: Lists workflow versions.
  • Workflows: Provides operations for creating and managing workflows.

Today we are going to address the Workflow Runs REST APIs for Logic App Standard.

Workflow Runs

These are the available operations:

  • Cancel: Cancels a workflow run.
  • Delete: Deletes a workflow run.
  • Get: Gets a workflow run.
  • List: Gets a list of workflow runs.

This list may change since this is not the official list, and many things under the hood are different from Consumption to Standard.

Cancel

Request URL:

POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{logicAppStdName}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runId}/cancel?api-version=2018-11-01

URI Parameters:

NameInRequiredTypeDescription
subscriptionIdpathTruestringThe subscription id.
resourceGroupNamepathTruestringThe resource group name.
logicAppStdNamepathTruestringThe Logic App Standard name.
workflowNamepathTruestringThe workflow name.
runIdpathTruestringThe workflow run id (name).
api-versionqueryTruestringThe API version.

Response:

NameTypeDescription
200 OKOK

Sample Request:

https://management.azure.com/subscriptions/xxxxxxxxx/resourceGroups/RG-SPMSDN-LASTD-POC/providers/Microsoft.Web/sites/LASTD-SPMSDN-EAI-POC/hostruntime/runtime/webhooks/workflow/api/management/workflows/DemoHTTP/runs/08585286433641737811956886654CU00/cancel?api-version=2018-11-01

Sample Response:

Status Code: 200

We may also get some errors if you try to cancel an already completed instance.

{
    "error": {
        "code": "WorkflowRunCanNotBeCancelled",
        "message": "The workflow 'DemoHTTP' run '08585286433641737811956886654CU00' with state 'Succeeded' could not be canceled, because it is not active."
    }
}

Delete

Request URL:

DELETE https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{logicAppStdName}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runId}?api-version=2018-11-01

URI Parameters:

NameInRequiredTypeDescription
subscriptionIdpathTruestringThe subscription id.
resourceGroupNamepathTruestringThe resource group name.
logicAppStdNamepathTruestringThe Logic App Standard name.
workflowNamepathTruestringThe workflow name.
runIdpathTruestringThe workflow run id (name).
api-versionqueryTruestringThe API version.

Response:

NameTypeDescription
200 OKOK
204 No ContentNo Content

Note: I wasn’t able to successfully test this API. But I assume it will exist.

Get

Request URL:

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{logicAppStdName}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs/{runId}?api-version=2018-11-01

URI Parameters:

NameInRequiredTypeDescription
subscriptionIdpathTruestringThe subscription id.
resourceGroupNamepathTruestringThe resource group name.
logicAppStdNamepathTruestringThe Logic App Standard name.
workflowNamepathTruestringThe workflow name.
runIdpathTruestringThe workflow run id (name).
api-versionqueryTruestringThe API version.

Response:

NameTypeDescription
200 OKWorkflowRunOK

Sample Request:

https://management.azure.com/subscriptions/xxxxxxxxxx/resourceGroups/RG-SPMSDN-LASTD-POC/providers/Microsoft.Web/sites/LASTD-SPMSDN-EAI-POC/hostruntime/runtime/webhooks/workflow/api/management/workflows/DemoHTTP/runs/08585286433641737811956886654CU00?api-version=2018-11-01

Sample Response:

Status Code: 200

We may also get some errors if you try to cancel an already completed instance.

{
    "properties": {
        "waitEndTime": "2023-01-06T00:05:21.4086338Z",
        "startTime": "2023-01-06T00:05:21.4086338Z",
        "endTime": "2023-01-06T00:05:23.8140158Z",
        "status": "Succeeded",
        "correlation": {
            "clientTrackingId": "08585286433641737811956886654CU00"
        },
        "workflow": {
            "id": "/workflows/DemoHTTP/versions/08585286433748374192",
            "name": "08585286433748374192",
            "type": "workflows/versions"
        },
        "trigger": {
            "name": "manual",
            "inputsLink": {
                "uri": "https://lastd-spmsdn-eai-poc.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxx/runs/08585286433641737811956886654CU00/contents/TriggerInputs?api-version=2018-11-01&code=xxxxxx%3d%3d&se=2023-01-06T18%3A00%3A00.0000000Z&sp=%2Fruns%2F08585286433641737811956886654CU00%2Fcontents%2FTriggerInputs%2Fread&sv=1.0&sig=7I7ZCpuXQwhlKNl6RrVLe5yAFPF-VR3CVBzK-IfRNwI",
                "contentSize": 16
            },
            "outputsLink": {
                "uri": "https://lastd-spmsdn-eai-poc.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxx/runs/08585286433641737811956886654CU00/contents/TriggerOutputs?api-version=2018-11-01&code=xxxx3d%3d&se=2023-01-06T18%3A00%3A00.0000000Z&sp=%2Fruns%2F08585286433641737811956886654CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=N-E5R7dsxwuoWFKav_EZFBC8_E-Xlf7eDkieJIsMyJk",
                "contentSize": 1126
            },
            "startTime": "2023-01-06T00:05:21.3134356Z",
            "endTime": "2023-01-06T00:05:21.3134356Z",
            "originHistoryName": "08585286433641737811956886654CU00",
            "correlation": {
                "clientTrackingId": "08585286433641737811956886654CU00"
            },
            "status": "Succeeded"
        },
        "outputs": {},
        "response": {
            "name": "Response",
            "outputsLink": {
                "uri": "https://lastd-spmsdn-eai-poc.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxx/runs/08585286433641737811956886654CU00/contents/ResponseOutputs?api-version=2018-11-01&code=QoTB_2yAu1mf6NMwZVEFwWd5xH4EgQBpXSFK3Q7zi7qQAzFuy-PBZw%3d%3d&se=2023-01-06T18%3A00%3A00.0000000Z&sp=%2Fruns%2F08585286433641737811956886654CU00%2Fcontents%2FResponseOutputs%2Fread&sv=1.0&sig=YFHL0CPNgytFe2OMHaymNcCaYCxpX3xH6BwrZNt-tHI",
                "contentSize": 46
            },
            "startTime": "2023-01-06T00:05:21.4639188Z",
            "endTime": "2023-01-06T00:05:23.7365848Z",
            "correlation": {
                "clientTrackingId": "08585286433641737811956886654CU00"
            },
            "code": "OK",
            "status": "Succeeded"
        }
    },
    "id": "/workflows/DemoHTTP/runs/08585286433641737811956886654CU00",
    "name": "08585286433641737811956886654CU00",
    "type": "workflows/runs"
}

List

Request URL:

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{logicAppStdName}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/runs?api-version=2018-11-01

URI Parameters:

NameInRequiredTypeDescription
subscriptionIdpathTruestringThe subscription id.
resourceGroupNamepathTruestringThe resource group name.
logicAppStdNamepathTruestringThe Logic App Standard name.
workflowNamepathTruestringThe workflow name.
api-versionqueryTruestringThe API version.
$filterqueryFalsestringThe filter to apply on the operation. Options for filters include: Status, StartTime, and ClientTrackingId.
$topqueryFalseinteger
int32
The number of items to be included in the result.

Response:

NameTypeDescription
200 OKWorkflowRunListResultOK

Sample Request:

https://management.azure.com/subscriptions/xxxxxxxxxx/resourceGroups/RG-SPMSDN-LASTD-POC/providers/Microsoft.Web/sites/LASTD-SPMSDN-EAI-POC/hostruntime/runtime/webhooks/workflow/api/management/workflows/DemoHTTP/runs?api-version=2018-11-01

Sample Response:

Status Code: 200

We may also get some errors if you try to cancel an already completed instance.

{
    "value": [
        {
            "properties": {
                "waitEndTime": "2023-01-09T10:37:36.9988341Z",
                "startTime": "2023-01-09T10:37:36.9988341Z",
                "endTime": "2023-01-09T10:37:38.9480163Z",
                "status": "Succeeded",
                "correlation": {
                    "clientTrackingId": "08585283462284798311177740271CU00"
                },
                "workflow": {
                    "id": "/workflows/DemoHTTP/versions/08585283475919679565",
                    "name": "08585283475919679565",
                    "type": "workflows/versions"
                },
                "trigger": {
                    "name": "manual",
                    "inputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxx/runs/08585283462284798311177740271CU00/contents/TriggerInputs?api-version=2018-11-01&code=xxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283462284798311177740271CU00%2Fcontents%2FTriggerInputs%2Fread&sv=1.0&sig=hgIpAfmo4kOdJ_bNwXhvmmD3m_mo8KY3ANeKUwk86ZM",
                        "contentSize": 2
                    },
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxx/runs/08585283462284798311177740271CU00/contents/TriggerOutputs?api-version=2018-11-01&code=xxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283462284798311177740271CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=_rs0On_muhcy3a9Nq6nrB-3kOnW6Xa_NgkaBkvc3zQ0",
                        "contentSize": 3541
                    },
                    "startTime": "2023-01-09T10:37:36.9980725Z",
                    "endTime": "2023-01-09T10:37:36.9980725Z",
                    "originHistoryName": "08585283462284798311177740271CU00",
                    "correlation": {
                        "clientTrackingId": "08585283462284798311177740271CU00"
                    },
                    "status": "Succeeded"
                },
                "outputs": {}
            },
            "id": "/workflows/DemoHTTP/runs/08585283462284798311177740271CU00",
            "name": "08585283462284798311177740271CU00",
            "type": "workflows/runs"
        },
        {
            "properties": {
                "waitEndTime": "2023-01-09T10:15:00.3587608Z",
                "startTime": "2023-01-09T10:15:00.3587608Z",
                "endTime": "2023-01-09T10:15:00.6643048Z",
                "status": "Succeeded",
                "correlation": {
                    "clientTrackingId": "08585283475851195588749398419CU00"
                },
                "workflow": {
                    "id": "/workflows/DemoHTTP/versions/08585283475919679565",
                    "name": "08585283475919679565",
                    "type": "workflows/versions"
                },
                "trigger": {
                    "name": "manual",
                    "inputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxx/runs/08585283475851195588749398419CU00/contents/TriggerInputs?api-version=2018-11-01&code=xxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283475851195588749398419CU00%2Fcontents%2FTriggerInputs%2Fread&sv=1.0&sig=tSCoAq49tK2DQbQNcIpzNnTOcucvPTHmNwDEb7L_ZYM",
                        "contentSize": 2
                    },
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxx/runs/08585283475851195588749398419CU00/contents/TriggerOutputs?api-version=2018-11-01&code=xxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283475851195588749398419CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=EuCVyfV1kQjwwlLQplQqT39AumkGidYGhWDPA0Mv5ew",
                        "contentSize": 1144
                    },
                    "startTime": "2023-01-09T10:15:00.3580393Z",
                    "endTime": "2023-01-09T10:15:00.3580393Z",
                    "originHistoryName": "08585283475851195588749398419CU00",
                    "correlation": {
                        "clientTrackingId": "08585283475851195588749398419CU00"
                    },
                    "status": "Succeeded"
                },
                "outputs": {},
                "response": {
                    "name": "Response",
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxx/runs/08585283475851195588749398419CU00/contents/ResponseOutputs?api-version=2018-11-01&code=xxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283475851195588749398419CU00%2Fcontents%2FResponseOutputs%2Fread&sv=1.0&sig=AcySKrg9iWVe1pGhLP4xdmvHuOfG3doS_tc4tY2LWtM",
                        "contentSize": 46
                    },
                    "startTime": "2023-01-09T10:15:00.3588287Z",
                    "endTime": "2023-01-09T10:15:00.6455744Z",
                    "correlation": {
                        "clientTrackingId": "08585283475851195588749398419CU00"
                    },
                    "code": "OK",
                    "status": "Succeeded"
                }
            },
            "id": "/workflows/DemoHTTP/runs/08585283475851195588749398419CU00",
            "name": "08585283475851195588749398419CU00",
            "type": "workflows/runs"
        },
        {
            "properties": {
                "waitEndTime": "2023-01-09T10:14:56.6507366Z",
                "startTime": "2023-01-09T10:14:56.6507366Z",
                "endTime": "2023-01-09T10:14:58.6732805Z",
                "status": "Succeeded",
                "correlation": {
                    "clientTrackingId": "08585283475889371416241396129CU00"
                },
                "workflow": {
                    "id": "/workflows/DemoHTTP/versions/08585283475919679565",
                    "name": "08585283475919679565",
                    "type": "workflows/versions"
                },
                "trigger": {
                    "name": "manual",
                    "inputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxx/runs/08585283475889371416241396129CU00/contents/TriggerInputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283475889371416241396129CU00%2Fcontents%2FTriggerInputs%2Fread&sv=1.0&sig=D18HGfNtYLzq2AEtgFqVLkkRvULNPvCeCa1SvBpa3nQ",
                        "contentSize": 2
                    },
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxxxxxxx/runs/08585283475889371416241396129CU00/contents/TriggerOutputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283475889371416241396129CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=3axc0IdnGm4oO0rmJrfrX3YiDfpsR9nQ5ctDlPVeU-g",
                        "contentSize": 1144
                    },
                    "startTime": "2023-01-09T10:14:56.5500175Z",
                    "endTime": "2023-01-09T10:14:56.5500175Z",
                    "originHistoryName": "08585283475889371416241396129CU00",
                    "correlation": {
                        "clientTrackingId": "08585283475889371416241396129CU00"
                    },
                    "status": "Succeeded"
                },
                "outputs": {},
                "response": {
                    "name": "Response",
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxxxxxxxxxxxx/runs/08585283475889371416241396129CU00/contents/ResponseOutputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283475889371416241396129CU00%2Fcontents%2FResponseOutputs%2Fread&sv=1.0&sig=h20YChZzmAiFqHJy6pHSxQIe0RPlxIwPX_8UlZC2OGQ",
                        "contentSize": 46
                    },
                    "startTime": "2023-01-09T10:14:56.6856426Z",
                    "endTime": "2023-01-09T10:14:58.6090884Z",
                    "correlation": {
                        "clientTrackingId": "08585283475889371416241396129CU00"
                    },
                    "code": "OK",
                    "status": "Succeeded"
                }
            },
            "id": "/workflows/DemoHTTP/runs/08585283475889371416241396129CU00",
            "name": "08585283475889371416241396129CU00",
            "type": "workflows/runs"
        },
        {
            "properties": {
                "waitEndTime": "2023-01-09T10:13:58.6761434Z",
                "startTime": "2023-01-09T10:13:58.6761434Z",
                "endTime": "2023-01-09T10:13:59.0232985Z",
                "status": "Succeeded",
                "correlation": {
                    "clientTrackingId": "08585283476468021537543143313CU00"
                },
                "workflow": {
                    "id": "/workflows/DemoHTTP/versions/08585283477145621096",
                    "name": "08585283477145621096",
                    "type": "workflows/versions"
                },
                "trigger": {
                    "name": "manual",
                    "inputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxxxxxx/runs/08585283476468021537543143313CU00/contents/TriggerInputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283476468021537543143313CU00%2Fcontents%2FTriggerInputs%2Fread&sv=1.0&sig=5bZVwL5pXWS0qAPRSxtfAzRxvibNObZAPTdBP30va-8",
                        "contentSize": 2
                    },
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxxxxxxxxxxxxxxx/runs/08585283476468021537543143313CU00/contents/TriggerOutputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283476468021537543143313CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=oHizYha7-xdqDGK8vQ23_4n3sRjNhf7dGPt3WKg-Gyg",
                        "contentSize": 1144
                    },
                    "startTime": "2023-01-09T10:13:58.6754443Z",
                    "endTime": "2023-01-09T10:13:58.6754443Z",
                    "originHistoryName": "08585283476468021537543143313CU00",
                    "correlation": {
                        "clientTrackingId": "08585283476468021537543143313CU00"
                    },
                    "status": "Succeeded"
                },
                "outputs": {},
                "response": {
                    "name": "Response",
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxxxxxx/runs/08585283476468021537543143313CU00/contents/ResponseOutputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283476468021537543143313CU00%2Fcontents%2FResponseOutputs%2Fread&sv=1.0&sig=Ikp1b_4ziSKX411LM9aKpWmGZE_GNpBMUw6pPKLmCD0",
                        "contentSize": 20
                    },
                    "startTime": "2023-01-09T10:13:58.6761767Z",
                    "endTime": "2023-01-09T10:13:59.0014749Z",
                    "correlation": {
                        "clientTrackingId": "08585283476468021537543143313CU00"
                    },
                    "code": "OK",
                    "status": "Succeeded"
                }
            },
            "id": "/workflows/DemoHTTP/runs/08585283476468021537543143313CU00",
            "name": "08585283476468021537543143313CU00",
            "type": "workflows/runs"
        },
        {
            "properties": {
                "waitEndTime": "2023-01-09T10:13:55.0871282Z",
                "startTime": "2023-01-09T10:13:55.0871282Z",
                "endTime": "2023-01-09T10:13:57.0799951Z",
                "status": "Succeeded",
                "correlation": {
                    "clientTrackingId": "08585283476504944788005579297CU00"
                },
                "workflow": {
                    "id": "/workflows/DemoHTTP/versions/08585283477145621096",
                    "name": "08585283477145621096",
                    "type": "workflows/versions"
                },
                "trigger": {
                    "name": "manual",
                    "inputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxxxxx/runs/08585283476504944788005579297CU00/contents/TriggerInputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283476504944788005579297CU00%2Fcontents%2FTriggerInputs%2Fread&sv=1.0&sig=syEc_IyPeOEkrkKVb9aMhxFBt6TXSJUlFvbAX9WM_S8",
                        "contentSize": 2
                    },
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxxxxxxxx/runs/08585283476504944788005579297CU00/contents/TriggerOutputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283476504944788005579297CU00%2Fcontents%2FTriggerOutputs%2Fread&sv=1.0&sig=66zkoZXdBg8Z5HhJY_ph2HKTRRALmBYkwzGPka2UZBE",
                        "contentSize": 1144
                    },
                    "startTime": "2023-01-09T10:13:54.9924658Z",
                    "endTime": "2023-01-09T10:13:54.9924658Z",
                    "originHistoryName": "08585283476504944788005579297CU00",
                    "correlation": {
                        "clientTrackingId": "08585283476504944788005579297CU00"
                    },
                    "status": "Succeeded"
                },
                "outputs": {},
                "response": {
                    "name": "Response",
                    "outputsLink": {
                        "uri": "https://lastd-la-with-error.azurewebsites.net:443/runtime/webhooks/workflow/scaleUnits/prod-00/workflows/xxxxxxxxxxx/runs/08585283476504944788005579297CU00/contents/ResponseOutputs?api-version=2018-11-01&code=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx%3d%3d&se=2023-01-12T02%3A00%3A00.0000000Z&sp=%2Fruns%2F08585283476504944788005579297CU00%2Fcontents%2FResponseOutputs%2Fread&sv=1.0&sig=4tvsLPQ3d5gfw2HfhMuezRS2SdYHZp2HvuhLnFB3SrM",
                        "contentSize": 20
                    },
                    "startTime": "2023-01-09T10:13:55.1265121Z",
                    "endTime": "2023-01-09T10:13:57.0138955Z",
                    "correlation": {
                        "clientTrackingId": "08585283476504944788005579297CU00"
                    },
                    "code": "OK",
                    "status": "Succeeded"
                }
            },
            "id": "/workflows/DemoHTTP/runs/08585283476504944788005579297CU00",
            "name": "08585283476504944788005579297CU00",
            "type": "workflows/runs"
        }
    ]
}

Stay tuned for the next Operation Group: Workflow Trigger Histories.

For those looking to learn more about the Logic App Standard REST API.

Download the full whitepaper here: Logic Apps Standard Rest API’s a Comprehensive Guide

Hope you find this helpful! If you liked the content or found it useful and would like to support me in writing more, consider buying (or helping to buy) a Star Wars Lego set for my son. 

Thanks for Buying me a coffe
Author: Sandro Pereira

Sandro Pereira lives in Portugal and works as a consultant at DevScope. In the past years, he has been working on implementing Integration scenarios both on-premises and cloud for various clients, each with different scenarios from a technical point of view, size, and criticality, using Microsoft Azure, Microsoft BizTalk Server and different technologies like AS2, EDI, RosettaNet, SAP, TIBCO etc. He is a regular blogger, international speaker, and technical reviewer of several BizTalk books all focused on Integration. He is also the author of the book “BizTalk Mapping Patterns & Best Practices”. He has been awarded MVP since 2011 for his contributions to the integration community.

Leave a Reply

Your email address will not be published. Required fields are marked *

The Ultimate Cloud
Management Platform for Azure

Supercharge your Azure Cost Saving

Learn More
Turbo360 Widget

Back to Top