DELETE
/
v1
/
alert_routing_rules
/
{id}
Delete an alert routing rule
curl --request DELETE \
  --url https://api.rootly.com/v1/alert_routing_rules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "b7048b85-fe2c-476f-8d91-22728840f5ef",
    "type": "alert_routing_rules",
    "attributes": {
      "name": "Alert Routing Rule 2",
      "alerts_source_id": "ca5de60b-3711-4eaf-9b7d-67e155231e85",
      "condition_type": "all",
      "enabled": false,
      "position": 1,
      "destination": null,
      "created_at": "2025-09-16T17:09:45.854-07:00",
      "updated_at": "2025-09-16T17:09:49.679-07:00",
      "destinations": [],
      "conditions": []
    },
    "relationships": {
      "owning_teams": {
        "data": [
          {
            "id": "d50f9c34-2463-417e-a4df-93e84bf4f7ab",
            "type": "groups"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Response

alert routing rule deleted

data
object
required