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": "18082f5c-d261-48b0-b7c5-9d9ef4d323a0",
    "type": "alert_routing_rules",
    "attributes": {
      "name": "Test Alert Routing Rule 1 (Updated)",
      "alerts_source_id": "5d61120d-9407-4a69-8b12-c150f511441b",
      "condition_type": "all",
      "enabled": false,
      "position": 1,
      "created_at": "2025-07-12T00:11:48.525-07:00",
      "updated_at": "2025-07-12T00:11:52.609-07:00",
      "destinations": [
        {
          "id": "a91b9ae7-104a-4939-852e-2ecbdc1f32f0",
          "target_type": "EscalationPolicy",
          "target_id": "7410af8a-7f4c-4210-8441-5105e2d68d85",
          "created_at": "2025-07-12T00:11:48.610-07:00",
          "updated_at": "2025-07-12T00:11:48.610-07:00"
        }
      ],
      "conditions": []
    },
    "relationships": {
      "owning_teams": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

alert routing rule updated

The response is of type object.