POST
/
v1
/
escalation_policies
/
{escalation_policy_id}
/
escalation_levels
Creates an escalation level for an Escalation Policy
curl --request POST \
  --url https://api.rootly.com/v1/escalation_policies/{escalation_policy_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": "e1bd96fc-8767-4b2c-9476-bd8f87d1af03",
    "type": "escalation_levels",
    "attributes": {
      "escalation_policy_path_id": "6a698c9f-e3cb-42c2-ad84-21160efe9ed4",
      "position": 1,
      "delay": 2,
      "escalation_policy_id": "1deac349-caca-4175-8d8d-bb31283a7980",
      "paging_strategy_configuration_strategy": null,
      "paging_strategy_configuration_schedule_strategy": null,
      "created_at": "2025-09-12T00:36:28.401-07:00",
      "updated_at": "2025-09-12T00:36:28.401-07:00",
      "notification_target_params": [
        {
          "id": "129",
          "type": "user",
          "team_members": "all"
        },
        {
          "id": "ae7eda17-8447-44b4-b974-edef747d122e",
          "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_id
string
required

Body

application/vnd.api+json

Response

escalation level created

The response is of type object.