Get user
keycloak_user_getRetrieve a Keycloak user's details by ID. Returns username, email, and enabled flag, or 'User not found' if the ID does not exist.
Instructions
Read-only. Fetches a single realm user by id and returns a JSON object with id, username, email and enabled flag, or the text "User not found." if no user has that id. Use keycloak_user_search first if you only know a username or email and need the id. Idempotent: repeated calls return the same result without changing anything.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The Keycloak user id (UUID), e.g. "8f14e45f-ceea-467e-9b3c-1234567890ab". Required; obtain it from keycloak_user_search. |