Get a workflow instance with its step logs.
curl --request GET \
--url https://api.example.com/api/v1/workflow-instances/{instance_id}{
"id": "<string>",
"workflow_id": "<string>",
"account_id": "<string>",
"status": "<string>",
"current_step": "<string>",
"context": {},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"error_message": "<string>",
"resume_job_id": "<string>",
"step_logs": [
{
"id": "<string>",
"instance_id": "<string>",
"workflow_id": "<string>",
"account_id": "<string>",
"step_name": "<string>",
"step_type": "<string>",
"status": "<string>",
"input": {},
"output": {},
"error_message": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
]
}Successful Response
Instance detail with embedded step logs.
Show child attributes
curl --request GET \
--url https://api.example.com/api/v1/workflow-instances/{instance_id}{
"id": "<string>",
"workflow_id": "<string>",
"account_id": "<string>",
"status": "<string>",
"current_step": "<string>",
"context": {},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"error_message": "<string>",
"resume_job_id": "<string>",
"step_logs": [
{
"id": "<string>",
"instance_id": "<string>",
"workflow_id": "<string>",
"account_id": "<string>",
"step_name": "<string>",
"step_type": "<string>",
"status": "<string>",
"input": {},
"output": {},
"error_message": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
]
}