Delete a specific incident_type by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_types/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7f3f14ea-1875-4977-bfa0-c1bb2c90e2ee",
"type": "incident_types",
"attributes": {
"slug": "non-nihil-illo-sed",
"name": "Non nihil illo sed.",
"description": "Eum itaque expedita beatae.",
"color": "#F4CFD1",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-09-03T02:23:04.682-07:00",
"updated_at": "2025-09-03T02:23:08.177-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
incident_type deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_types/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7f3f14ea-1875-4977-bfa0-c1bb2c90e2ee",
"type": "incident_types",
"attributes": {
"slug": "non-nihil-illo-sed",
"name": "Non nihil illo sed.",
"description": "Eum itaque expedita beatae.",
"color": "#F4CFD1",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-09-03T02:23:04.682-07:00",
"updated_at": "2025-09-03T02:23:08.177-07:00"
}
}
}