GET
/
api
/
v1
/
workflows
/
{workflowInstanceId}
/
tasks
Get all the tasks of a workflow execution
curl --request GET \
  --url https://workflow-app.thena.ai/api/v1/workflows/{workflowInstanceId}/tasks \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "stepIdentifier": 123,
  "activity": "<string>",
  "status": "SCHEDULED",
  "input": {},
  "result": {},
  "isRetry": true,
  "isCompensation": true,
  "executionTime": 123,
  "startedAt": "2023-11-07T05:31:56Z",
  "lastUpdatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Enter your API key

Path Parameters

workflowInstanceId
string
required

Response

200
application/json

Operation successful

The response is of type object.