Update a specific incident_permission_set_resource by id
curl --request PUT \
--url https://api.rootly.com/v1/incident_permission_set_resources/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_permission_set_resources",
"attributes": {
"kind": "severities",
"private": true,
"resource_id": "<string>",
"resource_type": "<string>",
"severity_params": {
"fully_enabled": true,
"create_enabled": false,
"applies_to_unassigned": true,
"severity_ids": [
"<string>"
]
}
}
}
}'
{
"data": {
"id": "84de8deb-3370-4af6-a66f-144cf1d6dd4c",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "9a5df0e6-f4f5-4180-8db6-e45b862b8f27",
"kind": "statuses",
"private": false,
"resource_id": "763a3de1-05f9-45f3-8115-bcf87aaece3f",
"resource_type": "IncidentType",
"updated_at": "2025-08-01T01:57:42.737-07:00",
"created_at": "2025-08-01T01:57:42.646-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set_resource updated
The response is of type object
.
curl --request PUT \
--url https://api.rootly.com/v1/incident_permission_set_resources/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_permission_set_resources",
"attributes": {
"kind": "severities",
"private": true,
"resource_id": "<string>",
"resource_type": "<string>",
"severity_params": {
"fully_enabled": true,
"create_enabled": false,
"applies_to_unassigned": true,
"severity_ids": [
"<string>"
]
}
}
}
}'
{
"data": {
"id": "84de8deb-3370-4af6-a66f-144cf1d6dd4c",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "9a5df0e6-f4f5-4180-8db6-e45b862b8f27",
"kind": "statuses",
"private": false,
"resource_id": "763a3de1-05f9-45f3-8115-bcf87aaece3f",
"resource_type": "IncidentType",
"updated_at": "2025-08-01T01:57:42.737-07:00",
"created_at": "2025-08-01T01:57:42.646-07:00"
}
}
}