Creates a new escalation level from provided data
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": "e58df2cb-fbfd-4e98-848c-b5b4f56ef002",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": "fb66d69d-1f01-4ea4-94cc-4fb25ecf831b",
"position": 2,
"delay": 2,
"escalation_policy_id": "82f81236-bbd0-42d6-8e57-7f5f366d2453",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-07-17T11:01:33.428-07:00",
"updated_at": "2025-07-17T11:01:33.428-07:00",
"notification_target_params": [
{
"id": "113",
"type": "user",
"team_members": "all"
},
{
"id": "07acd896-1f6e-46f8-86fd-9b171d8604e5",
"type": "schedule",
"team_members": "all"
},
{
"id": "CX21345",
"type": "slack_channel",
"team_members": "all"
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
escalation level created
The response is of type object
.
Was this page helpful?
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": "e58df2cb-fbfd-4e98-848c-b5b4f56ef002",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": "fb66d69d-1f01-4ea4-94cc-4fb25ecf831b",
"position": 2,
"delay": 2,
"escalation_policy_id": "82f81236-bbd0-42d6-8e57-7f5f366d2453",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-07-17T11:01:33.428-07:00",
"updated_at": "2025-07-17T11:01:33.428-07:00",
"notification_target_params": [
{
"id": "113",
"type": "user",
"team_members": "all"
},
{
"id": "07acd896-1f6e-46f8-86fd-9b171d8604e5",
"type": "schedule",
"team_members": "all"
},
{
"id": "CX21345",
"type": "slack_channel",
"team_members": "all"
}
]
}
}
}