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": "921ceca7-fca2-4c76-b9c0-225e1097b170",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "d05af0a9-d894-4fe9-89c6-81a8c2ce37b9",
"kind": "incident_types",
"private": false,
"resource_id": "8f0afa5b-2fed-4c0c-9d55-7b4a74712870",
"resource_type": "IncidentType",
"updated_at": "2025-08-11T20:43:51.694-07:00",
"created_at": "2025-08-11T20:43:51.694-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": "921ceca7-fca2-4c76-b9c0-225e1097b170",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "d05af0a9-d894-4fe9-89c6-81a8c2ce37b9",
"kind": "incident_types",
"private": false,
"resource_id": "8f0afa5b-2fed-4c0c-9d55-7b4a74712870",
"resource_type": "IncidentType",
"updated_at": "2025-08-11T20:43:51.694-07:00",
"created_at": "2025-08-11T20:43:51.694-07:00"
}
}
}