Tasks

Get all tasks

Retrieve all tasks for the authenticated organization. Employees/contractors only see their assigned tasks.

get/v1/tasks

Query parameters

includeRelationsstring

Include controls and automations with runs

Response

Tasks retrieved successfully

idstring required

Unique identifier for the task

titlestring required

Task title

descriptionstring

Task description

status'todo' | 'in_progress' | 'done' | 'blocked' required

Task status

createdAtstring date-time required

Task creation timestamp

updatedAtstring date-time required

Task last update timestamp

taskTemplateIdobject nullable

Task template ID

Example response

[
  {
    "id": "tsk_abc123def456",
    "title": "Implement user authentication",
    "description": "Add OAuth 2.0 authentication to the platform",
    "status": "in_progress",
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-15T10:30:00Z"
  }
]

Changes