Delete a case status

DELETE /api/v1/cases-status/{id}

Path parameters

  • id string Required

    The ID of the cases status.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • The timestamp of when the resource was created.

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

DELETE /api/v1/cases-status/{id}
curl \
 -X DELETE https://api.plannrcrm.com/api/v1/cases-status/id \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "name": "To Be Reviewed",
  "uuid": "fc6f3a4f-d7e8-41c5-a8b6-bd6db18be5c0",
  "colour": "#23852B",
  "position": 5,
  "created_at": "2025-01-17T11:18:29+00:00",
  "updated_at": "2025-01-17T11:18:29+00:00"
}