get_group
Retrieve a specific group by ID from Keycloak's identity management system, optionally specifying a target realm. Returns the group object for accurate access control.
Instructions
Get a specific group by ID.
Args:
group_id: Group ID
realm: Target realm (uses default if not specified)
Returns:
Group object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group_id | Yes | ||
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"group_id": {
"title": "Group Id",
"type": "string"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"required": [
"group_id"
],
"title": "get_groupArguments",
"type": "object"
}