application/json

Body

  • 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 custom status.

    • colour string

      The colour of the custom status

POST /api/v1/client-status
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/client-status' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"Active","colour":"#FFFFFF"}'
Request examples
{
  "name": "Active",
  "colour": "#FFFFFF"
}
Response examples (200)
{
  "name": "On Hold",
  "uuid": "9dd06e74-0311-4777-a005-777572fefc2a",
  "colour": "#FFFFFF",
  "created_at": "2025-12-24T11:02:59+00:00",
  "updated_at": "2025-12-24T11:02:59+00:00"
}