Delete a specific incident_permission_set_resource by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_permission_set_resources/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c4728fbe-b6c1-4570-833a-d491f229db6a",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "3c227f8a-b8bf-48db-83aa-ca272846886b",
"kind": "incident_types",
"private": false,
"resource_id": "5b45afa6-dc28-4fc8-929f-3b0ec58e52c8",
"resource_type": "IncidentType",
"updated_at": "2025-09-01T03:40:26.172-07:00",
"created_at": "2025-09-01T03:40:26.172-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set_resource deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_permission_set_resources/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c4728fbe-b6c1-4570-833a-d491f229db6a",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "3c227f8a-b8bf-48db-83aa-ca272846886b",
"kind": "incident_types",
"private": false,
"resource_id": "5b45afa6-dc28-4fc8-929f-3b0ec58e52c8",
"resource_type": "IncidentType",
"updated_at": "2025-09-01T03:40:26.172-07:00",
"created_at": "2025-09-01T03:40:26.172-07:00"
}
}
}