curl --request GET \
--url https://api.open.cx/workflows/{workflow_id}/runs/{run_id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"workflow_id": 123,
"status": "canceled",
"trigger_cause": "automatic",
"duration_in_seconds": 123,
"run_started_at": "2023-11-07T05:31:56Z",
"run_ended_at": "2023-11-07T05:31:56Z",
"is_test_run": true,
"created_at": "2023-11-07T05:31:56Z"
}Get details of a specific workflow run, including status, duration, trigger info, and timestamps.
curl --request GET \
--url https://api.open.cx/workflows/{workflow_id}/runs/{run_id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"workflow_id": 123,
"status": "canceled",
"trigger_cause": "automatic",
"duration_in_seconds": 123,
"run_started_at": "2023-11-07T05:31:56Z",
"run_ended_at": "2023-11-07T05:31:56Z",
"is_test_run": true,
"created_at": "2023-11-07T05:31:56Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response
Run UUID
Workflow version serial ID that was executed
Run status: "idle", "in_progress", "completed", "failed", "canceled"
canceled, completed, failed, idle, in_progress What caused the run: "manual", "automatic", "scheduled"
automatic, manual, scheduled How long the run took
Whether this was a test run
Was this page helpful?