API referencePipeline
List execution history
Retrieve execution history across all workflows. Supports filtering by workflow, status, and date range.
AuthorizationBearer <token>
JWT token for authentication
In: header
Query Parameters
workflow_id?string
Filter by workflow UUID
Format
uuidstatus?string
Filter by execution status
Value in
- "pending"
- "running"
- "completed"
- "failed"
- "cancelled"
limit?integer
Maximum number of results
Range
1 <= value <= 100Default
50offset?integer
Number of results to skip
Range
0 <= valueDefault
0Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/executions"{ "success": true, "message": "string", "error": "string", "data": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "workflow_id": "string", "status": "string", "created": "2019-08-24T14:15:22Z", "updated": "2019-08-24T14:15:22Z" } ]}