Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_permission_set_resource updated
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": "da6aa05f-4b39-4986-9d4d-da54b7ae6040",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "2996cf18-9fb2-4aae-83c6-6c59f96f5fdd",
"kind": "statuses",
"private": false,
"resource_id": "00bccca7-020c-450f-bd82-8e29fb641a95",
"resource_type": "IncidentType",
"updated_at": "2025-10-08T04:36:50.017-07:00",
"created_at": "2025-10-08T04:36:49.931-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
incident_permission_set_resource updated
Show child attributes
Was this page helpful?
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": "da6aa05f-4b39-4986-9d4d-da54b7ae6040",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "2996cf18-9fb2-4aae-83c6-6c59f96f5fdd",
"kind": "statuses",
"private": false,
"resource_id": "00bccca7-020c-450f-bd82-8e29fb641a95",
"resource_type": "IncidentType",
"updated_at": "2025-10-08T04:36:50.017-07:00",
"created_at": "2025-10-08T04:36:49.931-07:00"
}
}
}