Get client
keycloak_client_getRetrieve a Keycloak client by clientId, returning its UUID, enabled status, and publicClient flag. Returns 'Client not found' if no match.
Instructions
Fetch a single realm client by its clientId. Read-only and idempotent; it does not modify anything. Use keycloak_client_list first if you do not know the exact clientId. Returns a JSON object with uuid, clientId, enabled, and publicClient, or the text "Client not found." when no client matches.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clientId | Yes | The client's clientId (the human-readable OAuth/OIDC client identifier, e.g. "account" or "my-app"), not the internal UUID. Required. |