Skip to main content
GET
/
task-categories
List task categorys
curl --request GET \
  --url https://www.ruddr.io/api/workspace/task-categories \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "c7e2f4a1-9b38-4d65-8c17-3a5f1e2d4b96",
      "name": "Standard Task",
      "type": "standard",
      "icon": "file-alt",
      "color": "grey",
      "isActive": true,
      "isDefault": true,
      "createdAt": "2026-03-18T10:15:22.741Z"
    }
  ],
  "hasMore": true
}
A classification applied to project tasks that determines their behavior. standard categories represent regular tasks, while rollup categories act as containers whose budgets and rollups derive from their descendant standard tasks.

Authorizations

Authorization
string
header
required

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

Query Parameters

startingAfter
string

A cursor ID (uuid) used to request the next page of results. If not provided, defaults to the first page of results.

endingBefore
string

A cursor ID (uuid) used to request the previous page of results. Is mutually exclusive with startingAfter.

limit
integer

The maximum number of results to be returned. Can be any number from 1 to 100. Defaults to 10, if not provided.

name
string

Filter by task category name when it exactly matches the provided keyword.

Response

200

results
object[]

The list of results for the current page.

hasMore
boolean

Whether there are more results available after this page.