get_user
Retrieve detailed user information by specifying a user ID and optional realm within the Keycloak identity management system.
Instructions
Get a specific user by ID.
Args:
user_id: The user's ID
realm: Target realm (uses default if not specified)
Returns:
User object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | No | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
},
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"user_id"
],
"title": "get_userArguments",
"type": "object"
}