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": "4b2eca76-3f3a-42a3-a04f-117cc6f9f328",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Quis voluptatem animi non.",
"position": 2,
"created_at": "2025-07-18T16:47:52.789-07:00",
"updated_at": "2025-07-18T16:47:55.683-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
alert urgency updated
The response is of type object
.
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": "4b2eca76-3f3a-42a3-a04f-117cc6f9f328",
"type": "alert_urgencies",
"attributes": {
"name": "High (Updated)",
"description": "Quis voluptatem animi non.",
"position": 2,
"created_at": "2025-07-18T16:47:52.789-07:00",
"updated_at": "2025-07-18T16:47:55.683-07:00"
}
}
}