Retrieves a specific incident_permission_set_boolean by id
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_set_booleans/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8a746ac2-4be3-4c80-aeb7-7ded0761df2a",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "60f28663-484e-4217-bccd-4c648981b673",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-07-28T13:04:07.086-07:00",
"created_at": "2025-07-28T13:04:07.086-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set_boolean found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_set_booleans/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8a746ac2-4be3-4c80-aeb7-7ded0761df2a",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "60f28663-484e-4217-bccd-4c648981b673",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-07-28T13:04:07.086-07:00",
"created_at": "2025-07-28T13:04:07.086-07:00"
}
}
}