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": "4bde6601-7464-47d8-b7ab-06cf8a59e81e",
    "type": "alert_routing_rules",
    "attributes": {
      "name": "Alert Routing Rule 4",
      "alerts_source_id": "b9a2387a-26ff-464a-a07f-26e4a30db92a",
      "condition_type": "all",
      "enabled": false,
      "position": 1,
      "destination": {
        "target_type": "EscalationPolicy",
        "target_id": "336da3c0-8423-49d1-b9ac-7f5f2b485dd7"
      },
      "created_at": "2025-12-13T18:46:55.153-08:00",
      "updated_at": "2025-12-13T18:46:55.153-08:00",
      "destinations": [
        {
          "target_type": "EscalationPolicy",
          "target_id": "336da3c0-8423-49d1-b9ac-7f5f2b485dd7"
        }
      ],
      "conditions": []
    },
    "relationships": {
      "owning_teams": {
        "data": [
          {
            "id": "eafed9f4-9103-4a3d-abe3-e25a64cfbbec",
            "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