Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Reset Google Workspace user password

Reset a Workspace user's password.

Agent markdown

users.reset_password · Google Workspace · v1

Details

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

Scopes

  • https://www.googleapis.com/auth/admin.directory.user

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_keystringYesminLength 1
passwordstringYesminLength 8
change_password_at_next_loginbooleanNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
primary_emailstringYes

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_key": {
      "type": "string",
      "minLength": 1
    },
    "password": {
      "type": "string",
      "minLength": 8
    },
    "change_password_at_next_login": {
      "type": "boolean"
    }
  },
  "required": [
    "user_key",
    "password"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "primary_email": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "primary_email"
  ]
}