PUT
/
v1
/
alert_routing_rules
/
{id}
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",
      "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",
          "property_field_value": "<string>"
        }
      ],
      "destination": {
        "target_type": "Group",
        "target_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      }
    }
  }
}'
{
  "data": {
    "id": "d7e21337-77a5-443f-a752-0594915ee48d",
    "type": "alert_routing_rules",
    "attributes": {
      "name": "Test Alert Routing Rule 1 (Updated)",
      "alerts_source_id": "7aa20456-47a5-49e1-a65d-c3adc9334930",
      "condition_type": "all",
      "enabled": false,
      "created_at": "2025-04-18T23:06:36.026-07:00",
      "updated_at": "2025-04-18T23:06:40.761-07:00",
      "destination": {
        "id": "1c238d17-4e0b-4efa-9528-0d5bf19100e8",
        "target_type": "EscalationPolicy",
        "target_id": "28f5203c-ce36-41ac-a536-c0402c707224",
        "created_at": "2025-04-18T23:06:36.376-07:00",
        "updated_at": "2025-04-18T23:06:36.376-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
data
object
required

Response

200
application/vnd.api+json
alert routing rule updated
data
object
required