curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/workflows/{workflow_id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "pending",
"steps": [
"<unknown>"
],
"current_step": "<string>",
"configuration": {},
"team_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"state": {},
"error_message": "<string>"
}Get a specific workflow by ID
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/workflows/{workflow_id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "pending",
"steps": [
"<unknown>"
],
"current_step": "<string>",
"configuration": {},
"team_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"state": {},
"error_message": "<string>"
}Enter your Kubiya API token (format: Bearer
Successful Response
Workflow status enumeration
pending, running, paused, completed, failed, cancelled Was this page helpful?