update_group
Modify Keycloak group details, including name, path, and attributes, with optional realm customization, ensuring accurate identity and access management.
Instructions
Update a group.
Args:
group_id: Group ID
name: New group name
path: New group path
attributes: New group attributes
realm: Target realm (uses default if not specified)
Returns:
Status message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attributes | No | ||
group_id | Yes | ||
name | No | ||
path | No | ||
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"attributes": {
"anyOf": [
{
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Attributes"
},
"group_id": {
"title": "Group Id",
"type": "string"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Path"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"required": [
"group_id"
],
"title": "update_groupArguments",
"type": "object"
}