Delete a specific incident_role by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_roles/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "fb3f0ddf-04d8-42ec-b614-9cbc8cab1f55",
"type": "incident_roles",
"attributes": {
"slug": "pariatur-consequatur-natus-minima",
"name": "Pariatur consequatur natus minima.",
"summary": null,
"description": null,
"position": 1,
"optional": false,
"enabled": true,
"allow_multi_user_assignment": false,
"created_at": "2025-07-20T00:40:45.747-07:00",
"updated_at": "2025-07-20T00:40:49.032-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_role deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_roles/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "fb3f0ddf-04d8-42ec-b614-9cbc8cab1f55",
"type": "incident_roles",
"attributes": {
"slug": "pariatur-consequatur-natus-minima",
"name": "Pariatur consequatur natus minima.",
"summary": null,
"description": null,
"position": 1,
"optional": false,
"enabled": true,
"allow_multi_user_assignment": false,
"created_at": "2025-07-20T00:40:45.747-07:00",
"updated_at": "2025-07-20T00:40:49.032-07:00"
}
}
}