Create a client status Run in API Explorer

POST /api/v1/client-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 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": "69f939be-5e73-46f6-a551-2910f431d174",
  "colour": "#FFFFFF",
  "created_at": "2025-11-17T21:14:39+00:00",
  "updated_at": "2025-11-17T21:14:39+00:00"
}