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": "89da096c-40e2-4414-a22b-7620ceecf9ba",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "b20589a8-28ff-4441-a90a-e00a45dbd18c",
"incident_id": "031d0f6b-2a36-4ec0-8bd3-1a6453ed4fd7",
"assigned_at": "2025-10-13T07:18:15.514-07:00",
"assigned_by_user_id": 339
},
"relationships": {
"sub_status": {
"data": {
"id": "b20589a8-28ff-4441-a90a-e00a45dbd18c",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "339",
"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": "89da096c-40e2-4414-a22b-7620ceecf9ba",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "b20589a8-28ff-4441-a90a-e00a45dbd18c",
"incident_id": "031d0f6b-2a36-4ec0-8bd3-1a6453ed4fd7",
"assigned_at": "2025-10-13T07:18:15.514-07:00",
"assigned_by_user_id": 339
},
"relationships": {
"sub_status": {
"data": {
"id": "b20589a8-28ff-4441-a90a-e00a45dbd18c",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "339",
"type": "users"
}
}
}
}
}