API referencePipeline
Get execution status
Retrieve the current status and details of a specific execution. This is an alias for the pipeline detail endpoint.
AuthorizationBearer <token>
JWT token for authentication
In: header
Path Parameters
id*string
Execution/Pipeline UUID
Format
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://example.com/executions/497f6eca-6276-4993-bfeb-53cbbbba6f08"{ "status": "pending", "jobs": [ { "id": "string", "node_id": "string", "status": "idle", "execution_count": 0, "started": "2019-08-24T14:15:22Z", "completed": "2019-08-24T14:15:22Z", "execution_time": 0, "error_message": "string" } ], "node_statuses": { "property1": { "status": "idle", "last_executed": "2019-08-24T14:15:22Z", "execution_time": 0, "error": "string" }, "property2": { "status": "idle", "last_executed": "2019-08-24T14:15:22Z", "execution_time": 0, "error": "string" } }, "job_status_summary": { "total": 0, "pending": 0, "running": 0, "completed": 0, "failed": 0, "cancelled": 0, "skipped": 0, "paused": 0, "interrupted": 0 }, "kanban_config": { "columns": [ { "key": "string", "label": "string", "statuses": [ "idle" ], "icon": "string", "color": "string" } ] }}Execute workflow POST
Create a new pipeline and start execution in one call. This is a convenience endpoint that combines pipeline creation with immediate execution. Returns the pipeline ID and initial status for tracking.
Get execution logs GET
Retrieve detailed execution logs for a specific execution