Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Create Google Workspace user alias

Create an alias for a Workspace user.

Agent markdown

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

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesmaxLength 256
aliasstringYesmaxLength 320
primary_emailstringYesmaxLength 320

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 320
    },
    "alias": {
      "type": "string",
      "minLength": 3,
      "maxLength": 320
    }
  },
  "required": [
    "user_key",
    "alias"
  ]
}
Output
{
  "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"
  ]
}