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": "92cf68aa-f7ef-4304-b97c-9e497155ee5c",
    "type": "incident_permission_set_resources",
    "attributes": {
      "incident_permission_set_id": "af501498-82e8-472d-a324-75871320c526",
      "kind": "statuses",
      "private": false,
      "resource_id": "6cbbcf1c-2230-42cc-8bf5-45865aee1697",
      "resource_type": "IncidentType",
      "updated_at": "2025-05-08T00:20:59.235-07:00",
      "created_at": "2025-05-08T00:20:59.061-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.