# Customer password resets

Registered customer passwords can be reset in three steps:

1. [Create a new customer password reset](/core-api-reference/customer_password_resets/create.md) with the customer's email.
2. Get the reset password token from the response.
3. [Update the customer password reset](/core-api-reference/customer_password_resets/update.md) resource passing the token and the new password.

{% hint style="info" %}
Reset password tokens expires after **6 hours**.
{% endhint %}

{% hint style="warning" %}
It's your responsibility to verify the customer's identity before the third step. A typical flow is to send an email to the customer with a verification link that includes the reset password token.
{% endhint %}

{% hint style="info" %}
If the customer is a guest (i.e. has no password associated yet) there's no need to use the customer password reset resource. To set a password for a guest customer just [update the customer](/core-api-reference/customers/update.md) resource passing the desired password.
{% endhint %}

For security reasons, customer passwords must be managed using [integration](/core/api-credentials.md#integration) API credentials only. [Sales channels](/core/roles-and-permissions.md#sales-channel) are only allowed to perform update actions.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.commercelayer.io/core-api-reference/customer_password_resets.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
