Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Create Google Workspace group

Create a Workspace group.

Agent markdown

groups.create · Google Workspace · v1

Details

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

Scopes

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

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
emailstringYesminLength 3; maxLength 320
namestringYesminLength 1; maxLength 256
descriptionstringNomaxLength 4096

Output

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

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "email": {
      "type": "string",
      "minLength": 3,
      "maxLength": 320
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "description": {
      "type": "string",
      "maxLength": 4096
    }
  },
  "required": [
    "email",
    "name"
  ]
}
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"
  ]
}