> ## Documentation Index
> Fetch the complete documentation index at: https://docs.causeloop.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Permission Matrix

> Return the full RBAC permission matrix for all roles.

Sourced directly from security.PERMISSIONS — the canonical closed set
for this workspace plane.  Useful for admin UIs to render role comparison
tables without hardcoding the matrix on the frontend.



## OpenAPI

````yaml /openapi.json get /v1/members/permission-matrix
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/members/permission-matrix:
    get:
      tags:
        - members
      summary: Get Permission Matrix
      description: >-
        Return the full RBAC permission matrix for all roles.


        Sourced directly from security.PERMISSIONS — the canonical closed set

        for this workspace plane.  Useful for admin UIs to render role
        comparison

        tables without hardcoding the matrix on the frontend.
      operationId: get_permission_matrix_v1_members_permission_matrix_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PermissionMatrixResponse'
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  schemas:
    PermissionMatrixResponse:
      properties:
        permissions:
          additionalProperties:
            items:
              type: string
            type: array
          title: Permissions
          type: object
        roles:
          items:
            type: string
          title: Roles
          type: array
      required:
        - roles
        - permissions
      title: PermissionMatrixResponse
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````