Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

List Google Workspace groups

List groups in the Workspace directory.

Agent markdown

groups.list · 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
customerstringNominLength 1
page_tokenstringNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
groupsarray<object>Yes
groups[]objectYesadditionalProperties false
groups[].idstringYes
groups[].emailstringYes
groups[].namestringNo
next_page_tokenstringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "customer": {
      "type": "string",
      "minLength": 1
    },
    "page_token": {
      "type": "string"
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "groups": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "email"
        ]
      }
    },
    "next_page_token": {
      "type": "string"
    }
  },
  "required": [
    "groups"
  ]
}