Update a specific alert urgency by 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": "533b7aff-9704-4a2e-8200-3832e1b1e41d",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Voluptate fugit amet eum.",
"position": 2,
"created_at": "2026-01-28T15:49:48.152-08:00",
"updated_at": "2026-01-28T15:49:50.515-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
alert urgency updated
Show child attributes
Was this page helpful?
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": "533b7aff-9704-4a2e-8200-3832e1b1e41d",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Voluptate fugit amet eum.",
"position": 2,
"created_at": "2026-01-28T15:49:48.152-08:00",
"updated_at": "2026-01-28T15:49:50.515-08:00"
}
}
}