Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
incident_sub_status deleted
Delete a specific incident_sub_status by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_sub_statuses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e4776dfb-90a3-4649-8571-1094a002d630",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "29d8c98e-3bca-4b57-a761-8d5e84f17a77",
"incident_id": "0aa094b8-cae3-4990-8575-9f3648d20127",
"assigned_at": "2025-10-03T13:18:22.479-07:00",
"assigned_by_user_id": 313
},
"relationships": {
"sub_status": {
"data": {
"id": "29d8c98e-3bca-4b57-a761-8d5e84f17a77",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "313",
"type": "users"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_sub_status deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_sub_statuses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e4776dfb-90a3-4649-8571-1094a002d630",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "29d8c98e-3bca-4b57-a761-8d5e84f17a77",
"incident_id": "0aa094b8-cae3-4990-8575-9f3648d20127",
"assigned_at": "2025-10-03T13:18:22.479-07:00",
"assigned_by_user_id": 313
},
"relationships": {
"sub_status": {
"data": {
"id": "29d8c98e-3bca-4b57-a761-8d5e84f17a77",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "313",
"type": "users"
}
}
}
}
}