List Project Task Runs

List all task runs across a project. Returns a paginated list of task runs for all tasks in the project. Runs belonging to soft-deleted tasks are excluded. Visibility is applied per task: users only see runs they would see on each task run list (owner_only / editors_and_owners / all_viewers). A page may contain fewer than page_limit results when visibility filters apply. **Filtering:** task_id, task_revision_id, status (success/error), start_date, end_date.

Authentication

AuthorizationBearer

Bearer token authentication using JWT tokens from Ory Kratos/Hydra

Path parameters

org_idstringRequiredformat: "uuid"
The unique identifier of the organization.
project_idstringRequiredformat: "uuid"
The unique identifier of the project.

Query parameters

page_limitintegerOptional1-100Defaults to 100

The maximum number of items to return per page. Defaults to 100 if not specified.

cursorstringOptionalformat: "uuid"

A cursor for pagination. Use the next_cursor value from the previous response to get the next page of results.

task_idstringOptionalformat: "uuid"
Filter to a specific task
task_revision_idstringOptionalformat: "uuid"
Filter to a specific task revision
statusenumOptional

Filter by status (success or error)

Allowed values:
start_datestringOptional

Start date for the listing (e.g., ‘2023-06-01’, ‘24 hours ago’, ‘yesterday’). Defaults to 7 days before end_date or now.

end_datestringOptional

End date for the listing (e.g., ‘2023-06-30’, ‘now’, ‘today’). Defaults to now.

include_event_trigger_idbooleanOptionalDefaults to false

If true, include event_trigger_id for each task run in results.

Response

Paginated list of task runs
resultslist of objects
The list of items returned for the current page.
paginationobject or null
Contains pagination information for the result set.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
422
Unprocessable Entity Error