Get all task statuses in a firm Run in API Explorer
Ask AI
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": [
[
{
"uuid": "08cc1428-8147-4681-a587-cb3c184f42ec",
"created_at": "2026-07-20T09:57:24+01:00",
"updated_at": "2026-07-20T09:57:24+01:00",
"name": "Incomplete",
"colour": "#398898",
"position": 1,
"is_type_completed": false,
"is_archived": false,
"is_not_started": false
}
]
]
}