Get all task statuses in a firm Run in API Explorer
GET
/api/v1/task-status
curl \
--request GET 'https://api.plannrcrm.com/api/v1/task-status' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"name": "Incomplete",
"uuid": "6a40a2fc-92b1-4ddf-9474-8fec963c9b1f",
"colour": "#398898",
"position": 1,
"created_at": "2025-11-17T21:14:39+00:00",
"updated_at": "2025-11-17T21:14:39+00:00",
"is_archived": false,
"is_not_started": false,
"is_type_completed": false
}
]
}