add_realm_default_group
Assign a default group to a realm in Keycloak by specifying the group ID and optional target realm. Simplifies group management within identity and access systems.
Instructions
Add a default group to the realm.
Args:
group_id: Group ID to add as default
realm: Target realm (uses default if not specified)
Returns:
Status message
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": "add_realm_default_groupArguments",
"type": "object"
}