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": "3e068938-3b45-45fe-b89a-02593fed1f9f",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "bc6e92f3-7433-428c-8119-151097baec05",
"kind": "statuses",
"private": false,
"resource_id": "8ac9ada8-357d-44b7-95f8-c837e7fd1471",
"resource_type": "IncidentType",
"updated_at": "2025-08-21T23:33:17.334-07:00",
"created_at": "2025-08-21T23:33:17.241-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": "3e068938-3b45-45fe-b89a-02593fed1f9f",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "bc6e92f3-7433-428c-8119-151097baec05",
"kind": "statuses",
"private": false,
"resource_id": "8ac9ada8-357d-44b7-95f8-c837e7fd1471",
"resource_type": "IncidentType",
"updated_at": "2025-08-21T23:33:17.334-07:00",
"created_at": "2025-08-21T23:33:17.241-07:00"
}
}
}