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": "2a3d2702-b823-40bb-a2fa-bc9977c0cc93",
"type": "incident_types",
"attributes": {
"slug": "autem-quia-eos-exercitationem",
"name": "Autem quia eos exercitationem.",
"description": "Iusto eum fuga quidem.",
"color": "#D7F5E1",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-08-13T03:20:56.569-07:00",
"updated_at": "2025-08-13T03:20:59.412-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
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": "2a3d2702-b823-40bb-a2fa-bc9977c0cc93",
"type": "incident_types",
"attributes": {
"slug": "autem-quia-eos-exercitationem",
"name": "Autem quia eos exercitationem.",
"description": "Iusto eum fuga quidem.",
"color": "#D7F5E1",
"position": 1,
"notify_emails": [],
"slack_channels": [],
"slack_aliases": [],
"created_at": "2025-08-13T03:20:56.569-07:00",
"updated_at": "2025-08-13T03:20:59.412-07:00"
}
}
}