interface CustomerCreatePasswordResetToken {
    email: string;
    invalidateOlderTokens?: boolean;
    ttlMinutes?: number;
}

Properties

email: string

Email address of the Customer treated as case-insensitive.

invalidateOlderTokens?: boolean

If set to true, all password tokens issued previously for the Customer will be invalidated.

ttlMinutes?: number

Validity period of the generated token in minutes.