Create a new user.
External DocumentationTo learn more, visit the Google Admin Console documentation.

Basic Parameters

ParameterDescription
Change Password At Next LoginIndicates if the user is forced to change their password at next login. This setting doesn’t apply when the user signs in via a third-party identity provider.
First NameThe user’s first name.
Last NameThe user’s last name.
PasswordThe user’s password. Must be between 8 to 100 ASCII characters long.
Primary EmailThe user’s primary email address. It must be unique and cannot be an alias of another user.

Advanced Parameters

ParameterDescription
Delegated User OverridePerform the action on behalf of another user, overriding the delegated user defined in the connection.

If not specified, the delegated user is the one provided in the connection.

Has no effect when using an OAuth connection.

NOTE: the connection details are not edited by this input.
OrganizationsA JSON list of organizations the user belongs to. The maximum allowed data size for this field is 10KB.
Example input:
[
{
“name”: string,
“title”: string,
“primary”: boolean,
“type”: string,
“description”: string,
“department”: string
}
]
For more information, see the Google Admin Console documentation.
RelationsA JSON list of the relationships of the user to other users. The maximum allowed data size for this field is 2KB.
Example input with detailed fields:
[
{
“value”: string,
“type”: string,
“customType”: string
}
]
For more information, see the Google Admin Console documentation.
Secondary EmailThis is the email address where the new user receives their new account details. Also functions as the user’s recovery email.

Example Output

{
  "kind": string,
  "id": string,
  "etag": string,
  "primaryEmail": string,
  "name": {
    "givenName": string,
    "familyName": string
  },
  "isAdmin": false,
  "isDelegatedAdmin": false,
  "creationTime": string,
  "changePasswordAtNextLogin": false,
  "customerId": string,
  "orgUnitPath": string,
  "isMailboxSetup": false
}

Workflow Library Example

Create User with Google Admin Console and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop