Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Delete Google Workspace user alias

Delete an alias from a Workspace user.

Agent markdown

users.aliases.delete · Google Workspace · v1

Details

Risk
Destructive
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=true, 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

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": {}
}