List escalation levels
curl --request GET \
--url https://api.rootly.com/v1/escalation_paths/{escalation_policy_path_id}/escalation_levels \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"attributes": {
"escalation_policy_id": "<string>",
"escalation_policy_path_id": "<string>",
"paging_strategy_configuration_strategy": "default",
"paging_strategy_configuration_schedule_strategy": "on_call_only",
"delay": 123,
"position": 123,
"created_at": "<string>",
"updated_at": "<string>",
"notification_target_params": [
{
"id": "<string>",
"type": "team",
"team_members": "all"
}
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/escalation_paths/{escalation_policy_path_id}/escalation_levels \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"attributes": {
"escalation_policy_id": "<string>",
"escalation_policy_path_id": "<string>",
"paging_strategy_configuration_strategy": "default",
"paging_strategy_configuration_schedule_strategy": "on_call_only",
"delay": 123,
"position": 123,
"created_at": "<string>",
"updated_at": "<string>",
"notification_target_params": [
{
"id": "<string>",
"type": "team",
"team_members": "all"
}
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}