Retrieves a specific incident_type by id
curl --request GET \
--url https://api.rootly.com/v1/incident_types/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c60eea01-87e5-4575-b486-24cfe0c204aa",
"type": "incident_types",
"attributes": {
"slug": "non-eveniet-doloribus-ea",
"name": "Non eveniet doloribus ea.",
"description": "Est rerum laboriosam odit.",
"color": "#D7E7F5",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-08-21T23:33:58.254-07:00",
"updated_at": "2025-08-21T23:33:58.254-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
incident_type found by slug
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_types/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c60eea01-87e5-4575-b486-24cfe0c204aa",
"type": "incident_types",
"attributes": {
"slug": "non-eveniet-doloribus-ea",
"name": "Non eveniet doloribus ea.",
"description": "Est rerum laboriosam odit.",
"color": "#D7E7F5",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-08-21T23:33:58.254-07:00",
"updated_at": "2025-08-21T23:33:58.254-07:00"
}
}
}