Retrieve workflow execution details

Retrieve detailed information about a specific workflow execution.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
path Parameters
executionId
required
string (WorkflowExecutionId) = 36 characters

UUIDv4 identifier for a workflow execution.

Example: 059edaa4-a17a-4102-910e-2c3591500cce
Responses
200

Details of a workflow execution

get/workflows/executions/{executionId}
Request samples
res = client.workflows.executions.retrieve_detailed("000560bc-9080-4286-b242-a27bb4819253")

res = client.workflows.executions.list()
res = client.workflows.executions.retrieve_detailed(res[0].id)
Response samples
application/json
{
  • "id": "059edaa4-a17a-4102-910e-2c3591500cce",
  • "workflowExternalId": "string",
  • "workflowDefinition": {
    • "hash": "string",
    • "description": "string",
    • "tasks": [
      ]
    },
  • "version": "string",
  • "status": "RUNNING",
  • "engineExecutionId": "stringstringstringstringstringstring",
  • "executedTasks": [
    • {
      }
    ],
  • "input": {
    • "key1": "value1",
    • "key2": "value2"
    },
  • "metadata": {
    • "property1": "string",
    • "property2": "string"
    }
}