v3
latestOpenAPI 3.0.12026-07-31240345599.7 KBEscalations
Update escalation
Updates an escalation with given id in the request.
patch/api/{cloudId}/v1/teams/{teamId}/escalations/{id}
Path parameters
teamIdstring required
Identifier of the escalation owning team.
idstring required
Identifier of the escalation.
Request body
Example request
{
"name": "FE Daily On-call Escalation",
"rules": [
{
"delay": 5,
"recipient": {
"id": "f0f07a3d-bde8-4b2a-8d3e-f97020a51e32",
"type": "team"
}
}
],
"repeat": {
"waitInterval": 10,
"count": 5
}
}Response
Returned if the request is successful.
Example response
{
"id": "69291859-ed73-4396-8b74-c61a3c810cdf",
"name": "FE Daily On-call Escalation",
"description": "Your primary responsibilities include handling unexpected incidents that impact the functionality or performance of the frontend",
"rules": [
{
"delay": 5,
"recipient": {
"id": "f0f07a3d-bde8-4b2a-8d3e-f97020a51e32",
"type": "team"
}
}
],
"repeat": {
"waitInterval": 10,
"count": 5
}
}