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": "fb529fbc-81db-46cd-8e18-b6e352014f2b",
    "type": "escalation_levels",
    "attributes": {
      "escalation_policy_path_id": "71c0f6e3-4280-4637-94a8-f7c76028d949",
      "position": 2,
      "delay": 2,
      "escalation_policy_id": "7e398f71-7c88-44fa-8a4a-9183f2e829d1",
      "paging_strategy_configuration_strategy": null,
      "paging_strategy_configuration_schedule_strategy": null,
      "created_at": "2025-09-18T09:17:14.034-07:00",
      "updated_at": "2025-09-18T09:17:14.034-07:00",
      "notification_target_params": [
        {
          "id": "129",
          "type": "user",
          "team_members": "all"
        },
        {
          "id": "d5e09ed6-7283-4a46-8940-58912a451199",
          "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
data
object
required

Response

escalation level created

data
object
required