List processes
Returns process snapshots filtered by optional ref, state, and status query parameters. The status filter accepts the terminal exit states (success, failed, timeout, canceled) or ‘null’ to match processes that have not finished.
Query Parameters
Optional reference string used to filter processes.
Current lifecycle state of a process.
queued, running, idle, terminating Filter processes by terminal exit state. Use 'null' to match processes that have not finished.
failed, success, timeout, canceled, null Opaque pagination token returned as nextCursor by the previous response. Pass it back unchanged to fetch the next page; null/omitted fetches the first page. Cursors encode position, not filters, so change filters only between pages when starting over.
2048Maximum number of items per page. Clamped to a maximum of 100; defaults to 20.
1 <= x <= 100Response
Matching processes.
Paginated collection envelope.
Processes that match the provided query filters.
Opaque cursor for the next page; null when there are no more items. Echo it back as the cursor query parameter to continue paginating.
Whether additional pages exist. When true, nextCursor is a valid cursor; when false, pagination has reached the end.