Delete a specific escalation policy by id
curl --request DELETE \
--url https://api.rootly.com/v1/escalation_policies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "625c087f-bae2-4bd0-8da4-238664a3bb0b",
"type": "escalation_policies",
"attributes": {
"name": "Omnis qui ratione sit.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 103,
"last_updated_by_user_id": 104,
"group_ids": [],
"service_ids": [],
"business_hours": {
"time_zone": null,
"days": [
"F",
"M",
"T",
"R",
"W"
],
"start_time": "09:00 AM",
"end_time": "05:00 PM"
},
"created_at": "2025-09-11T06:56:24.971-07:00",
"updated_at": "2025-09-11T06:56:31.500-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "186ea27d-bb2d-43c8-9585-ef9ebf7589f3",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": []
},
"services": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
escalation policy deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/escalation_policies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "625c087f-bae2-4bd0-8da4-238664a3bb0b",
"type": "escalation_policies",
"attributes": {
"name": "Omnis qui ratione sit.",
"description": null,
"repeat_count": 1,
"created_by_user_id": 103,
"last_updated_by_user_id": 104,
"group_ids": [],
"service_ids": [],
"business_hours": {
"time_zone": null,
"days": [
"F",
"M",
"T",
"R",
"W"
],
"start_time": "09:00 AM",
"end_time": "05:00 PM"
},
"created_at": "2025-09-11T06:56:24.971-07:00",
"updated_at": "2025-09-11T06:56:31.500-07:00"
},
"relationships": {
"escalation_levels": {
"data": [
{
"id": "186ea27d-bb2d-43c8-9585-ef9ebf7589f3",
"type": "escalation_levels"
}
]
},
"escalation_paths": {
"data": []
},
"groups": {
"data": []
},
"services": {
"data": []
}
}
}
}