Interface UserUpdate

Hierarchy

  • UserUpdate

Indexable

[key: string]: any | any

Properties

app_metadata?: null | UserUpdateAppMetadata
blocked?: boolean

Whether this user was blocked by an administrator (true) or not (false).

client_id?: string

Auth0 client ID. Only valid when updating email address.

connection?: string

ID of the connection this user should be created in.

email?: string

Email address of this user.

email_verified?: boolean

Whether this email address is verified (true) or unverified (false). If set to false the user will not receive a verification email unless verify_email is set to true.

family_name?: null | string

Family name/last name/surname of this user.

given_name?: null | string

Given name/first name/forename of this user.

name?: null | string

Name of this user.

nickname?: null | string

Preferred nickname or alias of this user.

password?: string

New password for this user (mandatory for non-SMS connections).

phone_number?: string

The user's phone number (following the E.164 recommendation), only valid for users from SMS connections.

phone_verified?: boolean

Whether this phone number has been verified (true) or not (false).

picture?: null | string

URL to picture, photo, or avatar of this user.

user_metadata?: null | {
    [key: string]: any;
}

User metadata to which this user has read/write access.

username?: string

The user's username. Only valid if the connection requires a username.

verify_email?: boolean

Whether this user will receive a verification email after creation (true) or no email (false). Overrides behavior of email_verified parameter.

verify_phone_number?: boolean

Whether this user will receive a text after changing the phone number (true) or no text (false). Only valid when changing phone number.