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": "767cc92b-b22d-455a-8b3d-cc765a8a1a7e",
      "colour": "#23852B",
      "position": 5,
      "created_at": "2025-06-26T11:37:05+01:00",
      "updated_at": "2025-06-26T11:37:05+01:00",
      "is_type_completed": false
    }
  ]
}