DELETE
/
v1
/
incident_sub_statuses
/
{id}
Delete an incident_sub_status
curl --request DELETE \
  --url https://api.rootly.com/v1/incident_sub_statuses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8c17ff0f-0ad0-4101-b00e-6a159323a526",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "5dab6657-15ff-452b-a6d5-f319dc318bc9",
      "incident_id": "386d9da6-e0e1-41b4-9f7b-238a5ba268be",
      "assigned_at": "2025-08-14T12:45:09.378-07:00",
      "assigned_by_user_id": 297
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "5dab6657-15ff-452b-a6d5-f319dc318bc9",
          "type": "sub_statuses"
        }
      },
      "assigned_by_user": {
        "data": {
          "id": "297",
          "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.