Create a case status

POST /api/v1/cases-status
application/json

Body Required

  • name string Required

    The name of the status.

  • colour string

    The colour of the status.

Responses

  • 200 application/json
    Hide response attributes Show response 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.

POST /api/v1/cases-status
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/cases-status' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"In Progress","colour":"#23852B"}'
Request examples
{
  "name": "In Progress",
  "colour": "#23852B"
}
Response examples (200)
{
  "name": "To Be Reviewed",
  "uuid": "65d87f42-5545-4a2d-995c-56767068e97e",
  "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
}