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": "23b938b1-fd9a-4f9c-9f52-e01ec614c71c",
    "type": "incident_permission_set_resources",
    "attributes": {
      "incident_permission_set_id": "1b08ad71-9a51-4802-8546-5e4d4e5963ab",
      "kind": "statuses",
      "private": false,
      "resource_id": "1fd6b70f-ebaa-4197-8d32-a8e3afcd25d2",
      "resource_type": "IncidentType",
      "updated_at": "2025-05-29T17:44:45.113-07:00",
      "created_at": "2025-05-29T17:44:44.943-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.