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": "e0f92223-8570-49b2-a5d8-4c480a80b972",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "6661bf26-1f07-4cd9-9807-96b24a752f92",
"kind": "incident_types",
"private": false,
"resource_id": "d7963e84-5091-4898-b26d-e4e61c9db459",
"resource_type": "IncidentType",
"updated_at": "2025-07-21T23:19:06.338-07:00",
"created_at": "2025-07-21T23:19:06.338-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": "e0f92223-8570-49b2-a5d8-4c480a80b972",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "6661bf26-1f07-4cd9-9807-96b24a752f92",
"kind": "incident_types",
"private": false,
"resource_id": "d7963e84-5091-4898-b26d-e4e61c9db459",
"resource_type": "IncidentType",
"updated_at": "2025-07-21T23:19:06.338-07:00",
"created_at": "2025-07-21T23:19:06.338-07:00"
}
}
}