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": "012caf6e-080b-4ca8-a90f-f5b4a05b26fd",
  "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
}