Skip to main content
GET
/
v1
/
alert_routing_rules
/
{id}
Retrieves an alert routing rule
curl --request GET \
  --url https://api.rootly.com/v1/alert_routing_rules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "5836122c-f185-4a73-9e12-b59f1c300ac0",
    "type": "alert_routing_rules",
    "attributes": {
      "name": "Alert Routing Rule 4",
      "alerts_source_id": "b1ba75b9-9d1f-43a3-b78b-b9e7b175c7ce",
      "condition_type": "all",
      "enabled": false,
      "position": 1,
      "destination": {
        "target_type": "EscalationPolicy",
        "target_id": "acd29d24-ca63-4663-999d-e6d87c714475"
      },
      "created_at": "2025-11-21T14:27:20.098-08:00",
      "updated_at": "2025-11-21T14:27:20.098-08:00",
      "destinations": [
        {
          "target_type": "EscalationPolicy",
          "target_id": "acd29d24-ca63-4663-999d-e6d87c714475"
        }
      ],
      "conditions": []
    },
    "relationships": {
      "owning_teams": {
        "data": [
          {
            "id": "d50663c8-b82c-4562-a8fb-004148efa07a",
            "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 found by slug

data
object
required