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
| Method | Path | Notes |
|---|---|---|
GET | /api/v1/task-types | List 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| Param | Type | Default | Range |
|---|---|---|---|
limit | int | 50 | 1–100 |
offset | int | 0 | ≥ 0 |
Returns { data, total }.