Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface UpdateUserResponseContent

    interface UpdateUserResponseContent {
        user_id?: string;
        email?: string;
        email_verified?: boolean;
        username?: string;
        phone_number?: string;
        phone_verified?: boolean;
        created_at?: UserDateSchema;
        updated_at?: UserDateSchema;
        identities?: UserIdentitySchema[];
        app_metadata?: UserAppMetadataSchema;
        user_metadata?: UserMetadataSchema;
        picture?: string;
        name?: string;
        nickname?: string;
        multifactor?: string[];
        last_ip?: string;
        last_login?: UserDateSchema;
        logins_count?: number;
        blocked?: boolean;
        given_name?: string;
        family_name?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    user_id?: string

    ID of the user which can be used when interacting with other APIs.

    email?: string

    Email address of this user.

    email_verified?: boolean

    Whether this email address is verified (true) or unverified (false).

    username?: string

    Username of this user.

    phone_number?: string

    Phone number for this user. Follows the E.164 recommendation.

    phone_verified?: boolean

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

    created_at?: UserDateSchema
    updated_at?: UserDateSchema
    identities?: UserIdentitySchema[]

    Array of user identity objects when accounts are linked.

    app_metadata?: UserAppMetadataSchema
    user_metadata?: UserMetadataSchema
    picture?: string

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

    name?: string

    Name of this user.

    nickname?: string

    Preferred nickname or alias of this user.

    multifactor?: string[]

    List of multi-factor authentication providers with which this user has enrolled.

    last_ip?: string

    Last IP address from which this user logged in.

    last_login?: UserDateSchema
    logins_count?: number

    Total number of logins this user has performed.

    blocked?: boolean

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

    given_name?: string

    Given name/first name/forename of this user.

    family_name?: string

    Family name/last name/surname of this user.