Skip to main content
PUT
/
v1
/
alert_urgencies
/
{id}
Update an alert urgency
curl --request PUT \
  --url https://api.rootly.com/v1/alert_urgencies/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "alert_urgencies",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "position": 123
    }
  }
}
'
{
  "data": {
    "id": "f5de88f2-7974-4787-bfe8-19a94aeaef91",
    "type": "alert_urgencies",
    "attributes": {
      "name": "High (Updated)",
      "description": "Nihil aspernatur perspiciatis impedit.",
      "position": 2,
      "created_at": "2026-02-16T22:57:36.718-08:00",
      "updated_at": "2026-02-16T22:57:38.931-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

alert urgency updated

data
object
required