Delete a specific incident_permission_set by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_permission_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d94d9581-f334-48d6-bb23-40375024c049",
"type": "incident_permission_sets",
"attributes": {
"team_id": 236,
"name": "Est ut at voluptas.",
"slug": "est-ut-at-voluptas",
"description": "Aut aspernatur magni minus.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-05T00:32:07.605-07:00",
"created_at": "2025-08-05T00:32:07.391-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_permission_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d94d9581-f334-48d6-bb23-40375024c049",
"type": "incident_permission_sets",
"attributes": {
"team_id": 236,
"name": "Est ut at voluptas.",
"slug": "est-ut-at-voluptas",
"description": "Aut aspernatur magni minus.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-05T00:32:07.605-07:00",
"created_at": "2025-08-05T00:32:07.391-07:00"
}
}
}