Getting workflow execution status
Check the status of the workflow execution.
Procedure
-
In a REST client platform, add the authentication details of the tenant that is associated with
the workflow of which execution status you want to retrieve.
//In case of Instance API key Headers: { "x-instance-api-key": "instance_api_key" } // In case of MCSP or ISV token Headers: { "Authorization": "mcsp_or_isv_token" } - Make a GET request at the URL of the workflow.
URL Syntax -
<domain>/apis/v1/rest/projects/:project/workflow-run/:run_idIn this URL request, /:project is the name of the project that is associated with the workflow.
If the request is successful, you receive the response code for success.{ output: { "objects": [{ "run_id": <run_id>, "status": "<current_status_of_workflow_run>" }, { . . } ] } }