List Tasks

GA

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.

Path parameters

org_idstringRequired
The unique identifier of the organization.
project_idstringRequired
The unique identifier of the project.

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

namestringOptional

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

tag_idstringOptionalformat: "uuid"
Filter tasks by tag ID.
include_testsbooleanOptional
Include test revisions
cursorstringOptional
Pagination cursor for the next page of results.
page_limitintegerOptional>=1<=100Defaults to 100
Maximum number of tasks to return per page.

Response

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

Errors