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": "6a4ad625-9f8f-4572-b22a-c5191b0218e7",
"type": "incident_permission_sets",
"attributes": {
"team_id": 239,
"name": "Molestiae ut nesciunt adipisci.",
"slug": "molestiae-ut-nesciunt-adipisci",
"description": "Modi cumque aut maxime.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-26T21:14:29.854-07:00",
"created_at": "2025-08-26T21:14:29.682-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
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": "6a4ad625-9f8f-4572-b22a-c5191b0218e7",
"type": "incident_permission_sets",
"attributes": {
"team_id": 239,
"name": "Molestiae ut nesciunt adipisci.",
"slug": "molestiae-ut-nesciunt-adipisci",
"description": "Modi cumque aut maxime.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-26T21:14:29.854-07:00",
"created_at": "2025-08-26T21:14:29.682-07:00"
}
}
}