Changes the email of the Customer and sets the isEmailVerified property to false. This update action generates a CustomerEmailChanged Message.

interface CustomerChangeEmailAction {
    action: "changeEmail";
    email: string;
}

Properties

Properties

action: "changeEmail"
email: string

Value to set.