POST
/
v1
/
escalation_paths
/
{escalation_policy_path_id}
/
escalation_levels
Creates an escalation level for an Escalation Path
curl --request POST \
  --url https://api.rootly.com/v1/escalation_paths/{escalation_policy_path_id}/escalation_levels \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "escalation_levels",
    "attributes": {
      "delay": 123,
      "position": 123,
      "paging_strategy_configuration_strategy": "default",
      "paging_strategy_configuration_schedule_strategy": "on_call_only",
      "escalation_policy_path_id": "<string>",
      "notification_target_params": [
        {
          "id": "<string>",
          "type": "team",
          "team_members": "all"
        }
      ]
    }
  }
}'
{
  "data": {
    "id": "d11f24c6-d5ab-43b7-a272-676de210c4bf",
    "type": "escalation_levels",
    "attributes": {
      "escalation_policy_path_id": "573dd7a7-1fd4-4251-877d-f3853b7bb0b5",
      "position": 2,
      "delay": 2,
      "escalation_policy_id": "d3d0343c-62a7-41a5-89aa-8d5af1411957",
      "paging_strategy_configuration_strategy": null,
      "paging_strategy_configuration_schedule_strategy": null,
      "created_at": "2025-07-15T13:49:15.147-07:00",
      "updated_at": "2025-07-15T13:49:15.147-07:00",
      "notification_target_params": [
        {
          "id": "112",
          "type": "user",
          "team_members": "all"
        },
        {
          "id": "71def306-41da-40c6-a968-65e0d4f11c09",
          "type": "schedule",
          "team_members": "all"
        },
        {
          "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

escalation_policy_path_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json

escalation level created

The response is of type object.