List Runs
List automation runs for a workflow. Supports filtering by contact_id and status. Only standard automation runs are returned (survey runs excluded).
Path parameters
Integer id or obfuscated public_id of the workflow.
Query parameters
ID of item after which the collection should be returned. More examples and info about pagination in our guides.
Sort order of a list response. Use 'desc' to reverse the default 'asc' (ascending) sort order. Examples in our guides.
Sort property of a list response. The default is id and thus the created_at order. If you sort by other properties, we additionally sort by id implicitly as a secondary sort property, so that you can rely on the sort order to be deterministic even if the main sort property ends up with the same values.
Filter runs by contact_id (integer id or obfuscated public_id of the contact) and/or status (active, paused, completed, or canceled). An invalid status value returns 422.
{
"status": "completed"
}Response
OK
Example response
[
{
"id": 501,
"public_id": "RnXxYz",
"workflow_id": 101,
"contact_id": 9001,
"current_step_id": null,
"event_id": null,
"type": null,
"status": "completed",
"skip_communication": false,
"completed_at": "2025-06-02T10:30:00.000Z",
"paused_at": null,
"created_at": "2025-06-01T09:00:00.000Z",
"updated_at": "2025-06-02T10:30:00.000Z"
}
]