create_group
Create a new group in Keycloak with specified name, path, attributes, and optional target realm. Returns a status message upon completion.
Instructions
Create a new group.
Args:
name: Group name
path: Group path
attributes: Group attributes
realm: Target realm (uses default if not specified)
Returns:
Status message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attributes | No | ||
name | Yes | ||
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"
},
"name": {
"title": "Name",
"type": "string"
},
"path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Path"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"required": [
"name"
],
"title": "create_groupArguments",
"type": "object"
}