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": "5eb2d1de-7e10-42e4-8957-1e5a0a127c0b",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "cbadef84-7330-48d3-a823-d9c19381a0b0",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-08-08T09:13:22.893-07:00",
"created_at": "2025-08-08T09:13:22.893-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
.
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": "5eb2d1de-7e10-42e4-8957-1e5a0a127c0b",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "cbadef84-7330-48d3-a823-d9c19381a0b0",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-08-08T09:13:22.893-07:00",
"created_at": "2025-08-08T09:13:22.893-07:00"
}
}
}