DELETE
/
v1
/
incident_sub_statuses
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/incident_sub_statuses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "da8d7e46-6bc0-4f8f-900d-70b59bae667d",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "f0d37bc3-56ee-4b7c-b873-c18beb0c4e34",
      "incident_id": "a390cd30-512b-469a-b932-fec77b4836b5",
      "assigned_at": "2025-07-05T07:45:20.621-07:00",
      "assigned_by_user_id": 296
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "f0d37bc3-56ee-4b7c-b873-c18beb0c4e34",
          "type": "sub_statuses"
        }
      },
      "assigned_by_user": {
        "data": {
          "id": "296",
          "type": "users"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

incident_sub_status deleted

The response is of type object.