PUT
/
v1
/
incident_permission_set_resources
/
{id}
Update an incident_permission_set_resource
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": "3707dc57-76ad-4028-ace7-90160fc35456",
    "type": "incident_permission_set_resources",
    "attributes": {
      "incident_permission_set_id": "123c3a62-dbcb-4677-a7e6-30aacd820b5b",
      "kind": "statuses",
      "private": false,
      "resource_id": "4d196b04-7ccc-43b2-b8eb-ed1df93b4a62",
      "resource_type": "IncidentType",
      "updated_at": "2025-09-10T23:01:54.084-07:00",
      "created_at": "2025-09-10T23:01:53.996-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

incident_permission_set_resource updated

The response is of type object.