Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Create Google Workspace user

Create a Workspace user.

Agent markdown

users.create · Google Workspace · v1

Details

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

Scopes

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

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
primary_emailstringYesminLength 1
given_namestringYesminLength 1
family_namestringYesminLength 1
passwordstringYesminLength 8
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": {
    "primary_email": {
      "type": "string",
      "minLength": 1
    },
    "given_name": {
      "type": "string",
      "minLength": 1
    },
    "family_name": {
      "type": "string",
      "minLength": 1
    },
    "password": {
      "type": "string",
      "minLength": 8
    },
    "org_unit_path": {
      "type": "string"
    }
  },
  "required": [
    "primary_email",
    "given_name",
    "family_name",
    "password"
  ]
}
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"
  ]
}