Get all case statuses
Headers
-
Content-Type string
-
Accept string
Query parameters
-
filter[uuid] string
Filter by a comma separated list of UUIDs.
-
sort string
Field to sort by. Valid fields are [created_at, name]. Negative sign to denote DESC. Defaults to 'name'.
GET
/api/v1/cases-status
curl \
-X GET https://api.plannrcrm.com/api/v1/cases-status \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"name": "To Be Reviewed",
"uuid": "b6b653f3-f4d4-40ac-9519-dad0790b91ed",
"colour": "#23852B",
"position": 5,
"created_at": "2025-01-17T11:18:29+00:00",
"updated_at": "2025-01-17T11:18:29+00:00"
}
]
}