PUT
/
v1
/
alert_routing_rules
/
{id}
Update an alert routing rule
curl --request PUT \
  --url https://api.rootly.com/v1/alert_routing_rules/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "alert_routing_rules",
    "attributes": {
      "name": "<string>",
      "enabled": true,
      "alerts_source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "position": 123,
      "owning_team_ids": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ],
      "condition_type": "all",
      "conditions": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "property_field_type": "attribute",
          "property_field_name": "<string>",
          "property_field_condition_type": "is_one_of",
          "property_field_value": "<string>",
          "property_field_values": [
            "<string>"
          ]
        }
      ],
      "destination": {
        "target_type": "Service",
        "target_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      }
    }
  }
}'
{
  "data": {
    "id": "96e3023e-038d-4e41-becf-dc04b94499d4",
    "type": "alert_routing_rules",
    "attributes": {
      "name": "Test Alert Routing Rule 1 (Updated)",
      "alerts_source_id": "3eed6c65-267e-40a8-a91a-a360a839dd1a",
      "condition_type": "all",
      "enabled": false,
      "position": 1,
      "destination": {
        "id": "2e116557-761d-4166-b7d8-ae2b05917a17",
        "target_type": "EscalationPolicy",
        "target_id": "bb7257bf-83a9-4fb0-a777-4ac00e21dee4",
        "created_at": "2025-09-11T13:24:17.848-07:00",
        "updated_at": "2025-09-11T13:24:17.848-07:00"
      },
      "created_at": "2025-09-11T13:24:17.793-07:00",
      "updated_at": "2025-09-11T13:24:20.715-07:00",
      "destinations": [
        {
          "id": "2e116557-761d-4166-b7d8-ae2b05917a17",
          "target_type": "EscalationPolicy",
          "target_id": "bb7257bf-83a9-4fb0-a777-4ac00e21dee4",
          "created_at": "2025-09-11T13:24:17.848-07:00",
          "updated_at": "2025-09-11T13:24:17.848-07:00"
        }
      ],
      "conditions": []
    },
    "relationships": {
      "owning_teams": {
        "data": [
          {
            "id": "159c308b-0c29-48f7-9fdc-2e36baecd6fd",
            "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

Body

application/vnd.api+json

Response

alert routing rule updated

The response is of type object.