Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

List Google Workspace user aliases

List aliases for a Workspace user.

Agent markdown

users.aliases.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.user.alias.readonly

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_keystringYesminLength 1; maxLength 320

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
aliasesarray<object>YesmaxItems 100
aliases[]objectYesadditionalProperties false
aliases[].idstringYesmaxLength 256
aliases[].aliasstringYesmaxLength 320
aliases[].primary_emailstringYesmaxLength 320

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 320
    }
  },
  "required": [
    "user_key"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "aliases": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 256
          },
          "alias": {
            "type": "string",
            "maxLength": 320
          },
          "primary_email": {
            "type": "string",
            "maxLength": 320
          }
        },
        "required": [
          "id",
          "alias",
          "primary_email"
        ]
      },
      "maxItems": 100
    }
  },
  "required": [
    "aliases"
  ]
}