Get all case types

GET /api/v1/cases-type

Query parameters

  • filter[uuid] string

    Filter by a comma separated list of UUIDs.

  • sort string

    Field to sort by. Valid fields are [name, created_at]. 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
      • name string
      • created_at string
      • updated_at string
GET /api/v1/cases-type
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/cases-type' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "Mortgage Plan",
      "uuid": "dc261e24-90c5-4f5c-a0cd-d99667840f65",
      "created_at": "2025-06-26T11:37:05+01:00",
      "updated_at": "2025-06-26T11:37:05+01:00"
    }
  ]
}