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": "010ad8fa-fd94-4b2b-b75a-46e103e307a4",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "e74af4f3-16e1-4817-9e8a-37727de1f669",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-08-16T01:15:46.048-07:00",
"created_at": "2025-08-16T01:15:46.048-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": "010ad8fa-fd94-4b2b-b75a-46e103e307a4",
"type": "incident_permission_set_booleans",
"attributes": {
"incident_permission_set_id": "e74af4f3-16e1-4817-9e8a-37727de1f669",
"kind": "update_summary",
"private": false,
"enabled": false,
"updated_at": "2025-08-16T01:15:46.048-07:00",
"created_at": "2025-08-16T01:15:46.048-07:00"
}
}
}