List Tasks

List all Tasks in the project with pagination support. Returns a paginated list of Tasks with their basic information: - Task ID and metadata - Active revision status - Latest modification time - Tags Use the page_limit and cursor parameters to navigate through the results.

Authentication

AuthorizationBearer

API key or access token, sent as Authorization: Bearer <token>. The simplest option: create an API key in your dashboard under Settings, then paste it here.

OR
AuthorizationBearer

API key or access token, sent as Authorization: Bearer <token>. The simplest option: create an API key in your dashboard under Settings, then paste it here.

Path parameters

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

Query parameters

namestringOptional

Filter tasks by name (case-insensitive partial match).

tag_idstringOptionalformat: "uuid"
Filter tasks by tag ID.
created_by_mebooleanOptionalDefaults to false
Filter tasks to those created by the current user.
include_testsbooleanOptionalDefaults to false
Include test revisions
cursorstringOptional
Pagination cursor for the next page of results.
page_limitintegerOptional1-100Defaults to 100
Maximum number of tasks to return per page.

Response

Successfully retrieved paginated tasks
resultslist of objects
The task results for this page
paginationobject
Pagination metadata

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
422
Unprocessable Entity Error
500
Internal Server Error