6199a9464227
List all workflow runs
Returns a paginated list of workflow runs accessible to the calling user, sorted by creation date (newest first). Soft-deleted runs are excluded; only runs of workflow-type templates are returned (runs of page-type templates are out of scope).
Query parameters
Filter results to runs of a specific workflow. If the workflow does not exist or is inaccessible, the response is an empty page rather than an error.
Filter results by workflow run status.
- Active — the run is in progress.
- Completed — all tasks were completed and the run was finalised.
- Archived — the run was archived from the active list.
The internal Deleted status is hidden from the public API surface and rejected here. Omit this filter to include all non-deleted runs.
Opaque pagination cursor. Take this value from the previous response's links[] entry whose name is "next" (typically just follow that link's href instead of reading this value). Omit on the first page. If the previous response had no next link, there are no more pages.
Response
Example response
{
"data": [
{
"id": "uUtxlDHn_sDB697jsFJIrg",
"workflowId": "uUtxlDHn_sDB697jsFJIrg",
"links": [
{
"href": "https://api.process.st/api/v1.1/resource/XXX"
}
]
}
],
"links": [
{
"href": "https://api.process.st/api/v1.1/resource/XXX"
}
]
}