Delete a specific incident_permission_set_boolean by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_permission_set_booleans/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "632d4862-1715-4fc1-a190-a6669bcefa7c",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "7299f89a-27e1-4481-86e3-aad91b55c214",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-08-28T04:35:36.991-07:00",
"created_at": "2025-08-28T04:35:36.991-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set_boolean deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_permission_set_booleans/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "632d4862-1715-4fc1-a190-a6669bcefa7c",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "7299f89a-27e1-4481-86e3-aad91b55c214",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-08-28T04:35:36.991-07:00",
"created_at": "2025-08-28T04:35:36.991-07:00"
}
}
}