List Labels

GET

/v1/labels

Returns all active labels and tags created in the workspace.

Parameters

NameTypeDescription
pageintegerPage number
per_pageintegerRecords per page

Responses

200List of labels
{
  "data": [
    {
      "id": "lbl_12",
      "title": "Bug Report",
      "color": "#EF4444",
      "description": "Software defects"
    },
    {
      "id": "lbl_14",
      "title": "Feature Request",
      "color": "#3B82F6",
      "description": "User product suggestions"
    }
  ]
}