List authorization policies
keycloak_authz_policies_listRetrieve the authorization policies defined on a Keycloak client. Use it to review the rules that decide access, combining with other tools for full authorization model understanding.
Instructions
Lists the authorization-services policies defined on a Keycloak client (the rules, such as role, user, or JS policies, that decide whether access is granted). Read-only and idempotent: it performs no writes and returns the same data for unchanged configuration. Use it to review the policies that back a client's permissions; call keycloak_clients_list first to obtain the client's internal id, and combine with keycloak_authz_resources_list and keycloak_authz_permissions_list to understand the whole authorization model. Returns a JSON array of policy entries, or the text "Client not found." when no client matches the given id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clientId | Yes | The Keycloak internal id of the client whose authorization-services configuration to read. This is the UUID-style id (clientUuid), not the human-readable clientId string; obtain it from keycloak_clients_list. Required. |