Getting workflow execution status

Check the status of the workflow execution.

Procedure

  1. 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.
        Headers: 
    	{             
    		Authorization: BasicAuth
        }
  2. Make a GET request at the URL of the workflow.

    URL Syntax - <domain>/apis/v1/rest/projects/:project/workflow-run/:run_id

    In 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>"
    				},
    				{
    				.
    				.
    				}
    				]
    		}
    }