Get all case statuses

GET /api/v1/cases-status

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'.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • created_at string
      • updated_at string
      • name string
      • colour string
      • position integer
      • is_type_completed boolean
GET /api/v1/cases-status
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/cases-status' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "To Be Reviewed",
      "uuid": "ce70a655-77f4-434d-a0eb-d8bc11c6215c",
      "colour": "#23852B",
      "position": 5,
      "created_at": "2025-07-17T16:23:20+01:00",
      "updated_at": "2025-07-17T16:23:20+01:00",
      "is_type_completed": false
    }
  ]
}