Retrieves a specific incident_role by id
curl --request GET \
--url https://api.rootly.com/v1/incident_roles/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8cd7fa8f-1eb4-49b7-b7a0-aa014b8410c8",
"type": "incident_roles",
"attributes": {
"slug": "quas-non-blanditiis-doloremque",
"name": "Quas non blanditiis doloremque.",
"summary": null,
"description": null,
"position": 1,
"optional": false,
"enabled": true,
"allow_multi_user_assignment": false,
"created_at": "2025-08-02T12:38:46.517-07:00",
"updated_at": "2025-08-02T12:38:46.517-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_role found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_roles/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8cd7fa8f-1eb4-49b7-b7a0-aa014b8410c8",
"type": "incident_roles",
"attributes": {
"slug": "quas-non-blanditiis-doloremque",
"name": "Quas non blanditiis doloremque.",
"summary": null,
"description": null,
"position": 1,
"optional": false,
"enabled": true,
"allow_multi_user_assignment": false,
"created_at": "2025-08-02T12:38:46.517-07:00",
"updated_at": "2025-08-02T12:38:46.517-07:00"
}
}
}