PUT
/
v1
/
alert_urgencies
/
{id}
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": "376a2aa4-cc1f-475d-8659-7cc4ee6a46cd",
    "type": "alert_urgencies",
    "attributes": {
      "name": "High (Updated)",
      "description": "Assumenda qui beatae fugiat.",
      "position": 2,
      "created_at": "2025-03-19T17:35:51.356-07:00",
      "updated_at": "2025-03-19T17:35:55.544-07: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

200
application/vnd.api+json
alert urgency updated
data
object
required