remove_realm_default_group
Remove a designated default group from a specified Keycloak realm. Input the group ID and optionally the target realm to update realm-level configurations efficiently.
Instructions
Remove a default group from the realm.
Args:
group_id: Group ID to remove from defaults
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": "remove_realm_default_groupArguments",
"type": "object"
}