Access Control
Check BRK ACL
Retrieves the access control list for a BRK
POST
This endpoint retrieves the access control list (ACL) for a BRK. It allows you to check the visibility of a BRK (public or private), whether it can be cloned, and the list of users who have access to it along with their permission levels. You must have at least viewer permissions for the BRK to access its ACL.
Request
The ID of the BRK to check ACL for
Example Request
Response
Example Response (Private BRK)
Example Response (Public BRK)
Error Codes
Bad Request - The request was malformed or missing required parameters
Unauthorized - Authentication credentials are missing or invalid
Forbidden - The authenticated user does not have permission to check the ACL for the requested BRK
Not Found - The requested BRK does not exist
Internal Server Error - An unexpected error occurred on the server
Notes
- You must have at least viewer permissions for the BRK to access its ACL.
- The response includes the visibility of the BRK (
isPublic
), whether it can be cloned (isClone
), and the list of users who have access to it along with their permission levels. - Permission levels:
- 0: Viewer (can view and execute the BRK)
- 1: Editor (can view, execute, and edit the BRK)
- 2: Owner (can view, execute, edit, and delete the BRK, as well as manage permissions)
- To update the ACL for a BRK, use the Update BRK ACL endpoint.