Delete a specific alert routing rule by id
curl --request DELETE \
--url https://api.rootly.com/v1/alert_routing_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "04f663a4-9919-48ae-94f8-2667f570c24f",
"type": "alert_routing_rules",
"attributes": {
"name": "Alert Routing Rule 1",
"alerts_source_id": "ef914bb9-f174-4c02-9aa8-4c7eb6c2f177",
"condition_type": "all",
"enabled": false,
"position": 1,
"created_at": "2025-07-06T14:05:21.996-07:00",
"updated_at": "2025-07-06T14:05:27.334-07:00",
"destinations": [],
"conditions": []
},
"relationships": {
"owning_teams": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
alert routing rule deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/alert_routing_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "04f663a4-9919-48ae-94f8-2667f570c24f",
"type": "alert_routing_rules",
"attributes": {
"name": "Alert Routing Rule 1",
"alerts_source_id": "ef914bb9-f174-4c02-9aa8-4c7eb6c2f177",
"condition_type": "all",
"enabled": false,
"position": 1,
"created_at": "2025-07-06T14:05:21.996-07:00",
"updated_at": "2025-07-06T14:05:27.334-07:00",
"destinations": [],
"conditions": []
},
"relationships": {
"owning_teams": {
"data": []
}
}
}
}