PUT
/
v1
/
incident_permission_set_resources
/
{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": "7fb5abe9-3847-4cd0-a9f5-b20b43331242",
    "type": "incident_permission_set_resources",
    "attributes": {
      "incident_permission_set_id": "960b9e5f-e6c6-4894-ad1a-bd997364c08d",
      "kind": "statuses",
      "private": false,
      "resource_id": "e79153f9-21f9-462e-9161-84b9cc5a504a",
      "resource_type": "IncidentType",
      "updated_at": "2025-06-19T02:41:10.566-07:00",
      "created_at": "2025-06-19T02:41:10.423-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.