Update a specific alert routing rule by id. Note: If you are an advanced alert routing user, you should use the Alert Routes endpoint instead of this endpoint. If you don’t know whether you are an advanced user, please contact Rootly customer support.
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": "bdc98d59-bac5-4793-acc9-55bb9452153e",
"type": "alert_routing_rules",
"attributes": {
"name": "Test Alert Routing Rule 1 (Updated)",
"alerts_source_id": "a52927c2-8a4f-4c9c-9b47-fb93e1e2dd80",
"condition_type": "all",
"enabled": false,
"position": 1,
"destination": {
"target_type": "EscalationPolicy",
"target_id": "4c3230aa-2fab-4e6a-a2ea-658e3acff971"
},
"created_at": "2025-12-19T18:12:54.981-08:00",
"updated_at": "2025-12-19T18:12:57.392-08:00",
"destinations": [
{
"target_type": "EscalationPolicy",
"target_id": "4c3230aa-2fab-4e6a-a2ea-658e3acff971"
}
],
"conditions": []
},
"relationships": {
"owning_teams": {
"data": [
{
"id": "56e37fb0-1672-4775-aacf-b3e7631c54ec",
"type": "groups"
}
]
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
alert routing rule updated
Show child attributes
Was this page helpful?
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": "bdc98d59-bac5-4793-acc9-55bb9452153e",
"type": "alert_routing_rules",
"attributes": {
"name": "Test Alert Routing Rule 1 (Updated)",
"alerts_source_id": "a52927c2-8a4f-4c9c-9b47-fb93e1e2dd80",
"condition_type": "all",
"enabled": false,
"position": 1,
"destination": {
"target_type": "EscalationPolicy",
"target_id": "4c3230aa-2fab-4e6a-a2ea-658e3acff971"
},
"created_at": "2025-12-19T18:12:54.981-08:00",
"updated_at": "2025-12-19T18:12:57.392-08:00",
"destinations": [
{
"target_type": "EscalationPolicy",
"target_id": "4c3230aa-2fab-4e6a-a2ea-658e3acff971"
}
],
"conditions": []
},
"relationships": {
"owning_teams": {
"data": [
{
"id": "56e37fb0-1672-4775-aacf-b3e7631c54ec",
"type": "groups"
}
]
}
}
}
}