Update a specific incident_permission_set_boolean by 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": "cbdb428f-ad8c-43fe-84d3-a9449270af10",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "8460f167-780e-4d24-841e-a273cd18efad",
"kind": "update_timeline",
"private": false,
"enabled": false,
"updated_at": "2025-08-21T23:33:07.541-07:00",
"created_at": "2025-08-21T23:33:07.422-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set_boolean updated
The response is of type object
.
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": "cbdb428f-ad8c-43fe-84d3-a9449270af10",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "8460f167-780e-4d24-841e-a273cd18efad",
"kind": "update_timeline",
"private": false,
"enabled": false,
"updated_at": "2025-08-21T23:33:07.541-07:00",
"created_at": "2025-08-21T23:33:07.422-07:00"
}
}
}