get_realm_default_groups
Retrieve a list of default groups associated with a specified or default realm in Keycloak identity and access management.
Instructions
Get default groups for the realm.
Args:
realm: Target realm (uses default if not specified)
Returns:
List of default groups
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"title": "get_realm_default_groupsArguments",
"type": "object"
}