Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Update Google Workspace user

Update a Workspace user.

Agent markdown

users.update · 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

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_keystringYesminLength 1
given_namestringNo
family_namestringNo
org_unit_pathstringNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
primary_emailstringYes
nameobjectNoadditionalProperties false
name.given_namestringNo
name.family_namestringNo
name.full_namestringNo
suspendedbooleanYes
org_unit_pathstringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_key": {
      "type": "string",
      "minLength": 1
    },
    "given_name": {
      "type": "string"
    },
    "family_name": {
      "type": "string"
    },
    "org_unit_path": {
      "type": "string"
    }
  },
  "required": [
    "user_key"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "primary_email": {
      "type": "string"
    },
    "name": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "given_name": {
          "type": "string"
        },
        "family_name": {
          "type": "string"
        },
        "full_name": {
          "type": "string"
        }
      }
    },
    "suspended": {
      "type": "boolean"
    },
    "org_unit_path": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "primary_email",
    "suspended"
  ]
}