count_users
Retrieve the total number of users within a specified or default Keycloak realm. Simplifies user management by providing accurate counts for identity and access control.
Instructions
Count all users.
Args:
realm: Target realm (uses default if not specified)
Returns:
Number of users
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"title": "count_usersArguments",
"type": "object"
}