get_group_members
Retrieve members of a specific group in Keycloak by providing the group ID, with optional pagination, results limit, and realm parameters.
Instructions
Get members of a group.
Args:
group_id: Group ID
first: Pagination offset
max: Maximum results size
realm: Target realm (uses default if not specified)
Returns:
List of group members
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first | No | ||
group_id | Yes | ||
max | No | ||
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"first": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "First"
},
"group_id": {
"title": "Group Id",
"type": "string"
},
"max": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Max"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"required": [
"group_id"
],
"title": "get_group_membersArguments",
"type": "object"
}