interface CreateUserRequestMember {
    email: string;
    password: string;
    sendPasswordEmail: boolean;
    sendWelcomeEmail: boolean;
    username: string;
}

Properties

email: string

Email of the user to create.

password: string

The member's password.

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.