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": "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"
    }
  }
}

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

200
application/vnd.api+json

incident_permission_set_resource updated

The response is of type object.