interface CreateUserRequestMember {
    email: string;
    firstName: string;
    lastName: string;
    locale: string;
    password: string;
    phoneNumber: string;
    sendPasswordEmail: boolean;
    sendWelcomeEmail: boolean;
    username: string;
}

Properties

email: string

Email of the user to create.

firstName: string

The member's first name.

lastName: string

The member's last name.

locale: string

The member's locale.

password: string

The member's password.

phoneNumber: string

The member's phone number.

sendPasswordEmail: boolean

Whether or not to send an email containing the member's password.

sendWelcomeEmail: boolean

Whether or not to send a welcome email that includes onboarding information.

username: string

The member's username.