REST API

Task types

Read-only listing of the organization's task-type registry.

Task types are the org-managed classification for tasks (e.g. Bug, Feature, Chore). They are referenced by Task.taskTypeId. The registry is exposed read-only — manage entries from Organization Settings → Tasks → Task types.

Endpoints

MethodPathNotes
GET/api/v1/task-typesList task types alphabetical by name. Offset pagination.

TaskType model

{
  "id": "tt1…",
  "organizationId": "...",
  "name": "Bug",
  "color": "#ef4444",
  "createdAt": "...",
  "updatedAt": "..."
}

Listing task types

GET /api/v1/task-types?limit=50&offset=0
ParamTypeDefaultRange
limitint501–100
offsetint0≥ 0

Returns { data, total }.

On this page