Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Get Google Workspace group

Get one Workspace group by key.

Agent markdown

groups.get · Google Workspace · v1

Details

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

Scopes

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

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
group_keystringYesminLength 1; 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
    }
  },
  "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"
  ]
}