PUT
/
v1
/
escalation_levels
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/escalation_levels/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "escalation_levels",
    "attributes": {
      "delay": 123,
      "position": 123,
      "escalation_policy_path_id": "<string>",
      "paging_strategy_configuration_strategy": "default",
      "paging_strategy_configuration_schedule_strategy": "on_call_only",
      "notification_target_params": [
        {
          "id": "<string>",
          "type": "team",
          "team_members": "all"
        }
      ]
    }
  }
}'
{
  "data": {
    "id": "107fd380-1315-4f72-83b4-d4d48776e3fe",
    "type": "escalation_levels",
    "attributes": {
      "escalation_policy_path_id": null,
      "position": 1,
      "delay": 5,
      "escalation_policy_id": "a28890ba-c7cc-46c0-891b-baf0a99de1ec",
      "paging_strategy_configuration_strategy": null,
      "paging_strategy_configuration_schedule_strategy": null,
      "created_at": "2025-06-19T02:39:05.440-07:00",
      "updated_at": "2025-06-19T02:39:05.440-07:00",
      "notification_target_params": [
        {
          "id": "CX21345",
          "type": "slack_channel",
          "team_members": "all"
        }
      ]
    }
  }
}

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 with notification_target set with slack_channel_id instead of slack_channel uuid

The response is of type object.