Creates a new escalation level from provided data
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": "3b476840-83ad-45c1-9ed6-e02ec8987753",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": "503ff22f-ba42-49b4-8625-110b75868dc9",
"position": 1,
"delay": 2,
"escalation_policy_id": "52356e3c-89b0-4f2b-a96d-48c1c1f4765f",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-08-21T23:31:23.350-07:00",
"updated_at": "2025-08-21T23:31:23.350-07:00",
"notification_target_params": [
{
"id": "113",
"type": "user",
"team_members": "all"
},
{
"id": "8d00c4bb-4b03-4730-b975-80120e37577f",
"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_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": "3b476840-83ad-45c1-9ed6-e02ec8987753",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": "503ff22f-ba42-49b4-8625-110b75868dc9",
"position": 1,
"delay": 2,
"escalation_policy_id": "52356e3c-89b0-4f2b-a96d-48c1c1f4765f",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-08-21T23:31:23.350-07:00",
"updated_at": "2025-08-21T23:31:23.350-07:00",
"notification_target_params": [
{
"id": "113",
"type": "user",
"team_members": "all"
},
{
"id": "8d00c4bb-4b03-4730-b975-80120e37577f",
"type": "schedule",
"team_members": "all"
},
{
"id": "CX21345",
"type": "slack_channel",
"team_members": "all"
}
]
}
}
}