PUT
/
v1
/
escalation_paths
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/escalation_paths/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "escalation_paths",
    "attributes": {
      "name": "<string>",
      "notification_type": "audible",
      "default": true,
      "match_mode": "match-all-rules",
      "position": 123,
      "repeat": true,
      "repeat_count": 123,
      "initial_delay": 123,
      "rules": [
        {
          "rule_type": "alert_urgency",
          "urgency_ids": [
            "<any>"
          ]
        }
      ]
    }
  }
}'
{
  "data": {
    "id": "93230878-6012-48bc-b686-f23e013c45bc",
    "type": "escalation_paths",
    "attributes": {
      "name": "Quas amet est laboriosam.",
      "default": false,
      "notification_type": "quiet",
      "escalation_policy_id": "6783cc6a-cdb7-4ffd-a265-c8cdaecf23c8",
      "match_mode": "match-all-rules",
      "position": 1,
      "repeat": false,
      "repeat_count": 1,
      "initial_delay": 0,
      "created_at": "2025-05-08T00:18:07.124-07:00",
      "updated_at": "2025-05-08T00:18:09.379-07:00",
      "rules": [
        {
          "rule_type": "alert_urgency",
          "urgency_ids": [
            "3752080d-e7b6-42f1-adeb-3a4bdcd35594"
          ]
        }
      ]
    },
    "relationships": {
      "escalation_levels": {
        "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
escalation policy updated

The response is of type object.