# List RBAC policies Retrieve a list of RBAC policies. Can be filtered by platform_key or role_id. Endpoint: GET /api/core/rbac/policies/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Query parameters: - `page` (integer) A page number within the paginated result set. - `page_size` (integer) Number of results to return per page. - `platform_key` (string) Filter policies by platform key - `role_id` (integer) Filter policies by role ID ## Response 200 fields (application/json): - `count` (integer, required) Example: 123 - `next` (string,null) Example: "http://api.example.org/accounts/?page=4" - `previous` (string,null) Example: "http://api.example.org/accounts/?page=2" - `results` (array, required) - `results.id` (integer, required) - `results.role` (object, required) Role information (read-only) - `results.role.name` (string, required) - `results.role.actions` (array, required) List of actions/permissions this role can perform (e.g., ['Ibl.Mentor/Settings/read', 'Ibl.Mentor/Settings/write']) - `results.platform` (object, required) Platform information (read-only) - `results.platform.key` (string, required) The platform key - `results.platform.name` (string,null) The name of the platform - `results.resources` (array, required) List of resource paths this policy grants access to (e.g., ['/platforms/1/mentors', '/platforms/1/mentors/settings']) - `results.users` (array, required) - `results.users.id` (integer, required) edX user ID - `results.users.username` (string,null) edX username - `results.groups` (array, required) - `results.groups.name` (string) Optional name of the group - `results.groups.unique_id` (string, required) The unique identifier for the group - `results.groups.description` (string) Optional group description