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": "3852a859-a225-4eb4-81c9-46eebee342b2",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "bdb45333-7653-4f2b-982b-62ada5efc01d",
      "incident_id": "48dcf9bc-909c-4cd7-aaf0-f65fae331315",
      "assigned_at": "2025-07-25T14:35:20.748-07:00",
      "assigned_by_user_id": 297
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "bdb45333-7653-4f2b-982b-62ada5efc01d",
          "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.