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": "f1ba54c6-93c7-4731-993a-4806ba31221b",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "759748e2-18d2-4bda-b5ca-71b515d3696c",
      "incident_id": "b53f47be-b1f5-4dbf-9c59-3860b5c29f55",
      "assigned_at": "2025-05-29T17:45:39.368-07:00",
      "assigned_by_user_id": 286
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "759748e2-18d2-4bda-b5ca-71b515d3696c",
          "type": "sub_statuses"
        }
      },
      "assigned_by_user": {
        "data": {
          "id": "286",
          "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.