Skip to main content
POST
Check BRK ACL
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

string
required
The ID of the BRK to check ACL for

Example Request

Response

object

Example Response (Private BRK)

Example Response (Public BRK)

Error Codes

object
Bad Request - The request was malformed or missing required parameters
object
Unauthorized - Authentication credentials are missing or invalid
object
Forbidden - The authenticated user does not have permission to check the ACL for the requested BRK
object
Not Found - The requested BRK does not exist
object
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.