Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Update Google Workspace group

Update a Workspace group.

Agent markdown

groups.update · Google Workspace · v1

Details

Risk
Write
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=true, openWorld=true

Scopes

  • https://www.googleapis.com/auth/admin.directory.group

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
group_keystringYesminLength 1; maxLength 320
namestringNominLength 1; maxLength 256
descriptionstringNomaxLength 4096
emailstringNominLength 3; maxLength 320

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesmaxLength 256
emailstringYesmaxLength 320
namestringNomaxLength 256
descriptionstringNomaxLength 4096

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "group_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 320
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "description": {
      "type": "string",
      "maxLength": 4096
    },
    "email": {
      "type": "string",
      "minLength": 3,
      "maxLength": 320
    }
  },
  "required": [
    "group_key"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 256
    },
    "email": {
      "type": "string",
      "maxLength": 320
    },
    "name": {
      "type": "string",
      "maxLength": 256
    },
    "description": {
      "type": "string",
      "maxLength": 4096
    }
  },
  "required": [
    "id",
    "email"
  ]
}