Retrieves a specific alert urgency by id
curl --request GET \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3a704f7a-e028-4530-a728-b2bbc328601e",
"type": "alert_urgencies",
"attributes": {
"name": "r4w6l",
"description": "Ipsam et quia ipsa.",
"position": 1,
"created_at": "2025-08-15T07:09:53.457-07:00",
"updated_at": "2025-08-15T07:09:53.462-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
alert urgency found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3a704f7a-e028-4530-a728-b2bbc328601e",
"type": "alert_urgencies",
"attributes": {
"name": "r4w6l",
"description": "Ipsam et quia ipsa.",
"position": 1,
"created_at": "2025-08-15T07:09:53.457-07:00",
"updated_at": "2025-08-15T07:09:53.462-07:00"
}
}
}