Creates a new incident_permission_set_boolean from provided data
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": "8bed0c4e-335e-42cb-ab1a-36cabe990573",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "2e7757e6-ff56-4315-901c-c45668702307",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-07-06T14:09:51.035-07:00",
"created_at": "2025-07-06T14:09:51.035-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set_boolean created
The response is of type object
.
Was this page helpful?
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": "8bed0c4e-335e-42cb-ab1a-36cabe990573",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "2e7757e6-ff56-4315-901c-c45668702307",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-07-06T14:09:51.035-07:00",
"created_at": "2025-07-06T14:09:51.035-07:00"
}
}
}