# customerReset - storefront - MUTATION
Version: 2025-04

## Description
"Resets a customer’s password with the token received from a reset password email. You can send a reset password email with the [`customerRecover`](https://shopify.dev/api/storefront/latest/mutations/customerRecover) mutation."


### Access Scopes
`unauthenticated_write_customers` access scope.


## Arguments
* [id](/docs/api/storefront/2025-04/scalars/ID): ID! - Specifies the customer to reset.
* [input](/docs/api/storefront/2025-04/input-objects/CustomerResetInput): CustomerResetInput! - The fields used to reset a customer’s password.


## Returns
* [customer](/docs/api/storefront/2025-04/objects/Customer): Customer The customer object which was reset.
* [customerAccessToken](/docs/api/storefront/2025-04/objects/CustomerAccessToken): CustomerAccessToken A newly created customer access token object for the customer.
* [customerUserErrors](/docs/api/storefront/2025-04/objects/CustomerUserError): CustomerUserError! The list of errors that occurred from executing the mutation.
* [userErrors](/docs/api/storefront/2025-04/objects/UserError): UserError! The list of errors that occurred from executing the mutation.


## Examples