Skip to content
On this page

confirmPasswordReset ​

Definition ​

Confirm a customer's password reset. Set new password for account.

Signature ​

ts
export async function confirmPasswordReset(
  params: {
    newPassword: string;
    hash: string;
    [key: string]: unknown; // additional params
  },
  contextInstance: ShopwareApiInstance = defaultInstance,
): Promise<void> 

Parameters ​

NameTypeDescription
params
{
    newPassword: string;
    hash: string;
    [key: string]: unknown; // additional params
  }
new password and hash
contextInstance
ShopwareApiInstance

Return type ​

ts
Promise<void>

Properties ​

NameTypeDescription

Usage example ​

WARNING

Example is generated automatically. Sometimes it's required to be adjusted to your needs.

Open in StackBlitz

confirmPasswordReset has loaded