Skip to main content
POST
/
v1
/
incident_permission_sets
/
{incident_permission_set_id}
/
booleans
Creates an incident_permission_set_boolean
curl --request POST \
  --url https://api.rootly.com/v1/incident_permission_sets/{incident_permission_set_id}/booleans \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_permission_set_booleans",
    "attributes": {
      "incident_permission_set_id": "<string>",
      "kind": "publish_to_status_page",
      "private": true,
      "enabled": true,
      "severity_params": {
        "fully_enabled": true,
        "create_enabled": false,
        "applies_to_unassigned": true,
        "severity_ids": [
          "<string>"
        ]
      }
    }
  }
}'
{
  "data": {
    "id": "4d7c1154-84da-419d-a2f0-e9aba0637518",
    "type": "incident_permission_set_booleans",
    "attributes": {
      "incident_permission_set_id": "1e4b4b1e-26df-4813-a242-d64ba752d711",
      "kind": "update_summary",
      "private": false,
      "enabled": false,
      "updated_at": "2025-10-10T09:10:00.617-07:00",
      "created_at": "2025-10-10T09:10:00.617-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

incident_permission_set_id
string
required

Body

application/vnd.api+json
data
object
required

Response

incident_permission_set_boolean created

data
object
required
I