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

        The UUID of the resource.

      • created_at string

        The timestamp of when the resource was created.

      • updated_at string

        The timestamp of when the resource was updated.

      • name string

        The name of the status.

      • colour string

        The colour of the status.

      • position integer

        The position of the status.

      • is_type_completed boolean

        Indicates if the status is for a completed case type.

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": "33938cfa-5f0f-41f4-a590-5b01b080703f",
      "colour": "#23852B",
      "position": 5,
      "created_at": "2025-12-08T16:11:22+00:00",
      "updated_at": "2025-12-08T16:11:22+00:00",
      "is_type_completed": false
    }
  ]
}