PUT
/
v1
/
incident_permission_set_booleans
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/incident_permission_set_booleans/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_permission_set_booleans",
    "attributes": {
      "kind": "publish_to_status_page",
      "private": true,
      "enabled": true,
      "severity_params": {
        "fully_enabled": true,
        "applies_to_unassigned": true,
        "create_enabled": false,
        "severity_ids": [
          "<string>"
        ]
      }
    }
  }
}'
{
  "data": {
    "id": "28f365b9-015e-47bb-b8d9-44a04f3ab684",
    "type": "incident_permission_set_booleans",
    "attributes": {
      "incident_permission_set_id": "142fb4c8-2398-435a-8c83-89f17dbc2cf2",
      "kind": "update_timeline",
      "private": false,
      "enabled": false,
      "updated_at": "2025-06-19T02:41:01.662-07:00",
      "created_at": "2025-06-19T02:41:01.523-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_boolean updated

The response is of type object.