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": "edfaf586-6af2-4e10-bbe4-1ecfd7c73a00",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "df773dea-47f2-4ac3-9de2-18c99ea69132",
      "incident_id": "fb5f9ec3-ff96-4cbf-a105-6cede6443415",
      "assigned_at": "2025-06-19T02:41:48.023-07:00",
      "assigned_by_user_id": 296
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "df773dea-47f2-4ac3-9de2-18c99ea69132",
          "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.