Delete a specific Sub-Status by id
curl --request DELETE \
--url https://api.rootly.com/v1/sub_statuses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d77cd289-b351-43c2-afa0-8371b9e7c0d1",
"type": "sub_statuses",
"attributes": {
"name": "15i59",
"description": "Eveniet accusamus dolorum voluptatum.",
"slug": "15i59",
"parent_status": "started",
"position": 3,
"deleted_at": "2025-08-19T10:25:41.491-07:00",
"updated_at": "2025-08-19T10:25:41.491-07:00",
"created_at": "2025-08-19T10:25:39.698-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
sub_status deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/sub_statuses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d77cd289-b351-43c2-afa0-8371b9e7c0d1",
"type": "sub_statuses",
"attributes": {
"name": "15i59",
"description": "Eveniet accusamus dolorum voluptatum.",
"slug": "15i59",
"parent_status": "started",
"position": 3,
"deleted_at": "2025-08-19T10:25:41.491-07:00",
"updated_at": "2025-08-19T10:25:41.491-07:00",
"created_at": "2025-08-19T10:25:39.698-07:00"
}
}
}