Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
alert urgency updated
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": "a08052a1-443b-48c4-afcc-147c01dabae3",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Doloremque sint molestiae laudantium.",
"position": 2,
"created_at": "2025-10-09T08:33:30.363-07:00",
"updated_at": "2025-10-09T08:33:32.845-07: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": "a08052a1-443b-48c4-afcc-147c01dabae3",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Doloremque sint molestiae laudantium.",
"position": 2,
"created_at": "2025-10-09T08:33:30.363-07:00",
"updated_at": "2025-10-09T08:33:32.845-07:00"
}
}
}