v3

latestOpenAPI 3.0.12026-07-31240345599.7 KB
Escalations

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

namestring

Name of the escalation.

descriptionstring

Description of the escalation.

enabledboolean

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.

idstring

Identifier of the escalation.

namestring

Name of the escalation.

descriptionstring

Description of the escalation.

enabledboolean

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
  }
}