Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Add Google Workspace group member

Add a member to a Workspace group.

Agent markdown

groups.members.add · 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.member

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
group_keystringYesminLength 1
emailstringYesminLength 1
rolestringNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
emailstringYes
rolestringYes

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "group_key": {
      "type": "string",
      "minLength": 1
    },
    "email": {
      "type": "string",
      "minLength": 1
    },
    "role": {
      "type": "string"
    }
  },
  "required": [
    "group_key",
    "email"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "role": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "email",
    "role"
  ]
}