# Request Password Reset email

Use this **REST** method to request a password reset email.

## Rest API Method

## Password Reset Request

<mark style="color:green;">`POST`</mark> `https://production.suggestic.com/api/v1/password_reset`

#### Headers

| Name                                           | Type   | Description      |
| ---------------------------------------------- | ------ | ---------------- |
| Suggestic-Partner                              | String |                  |
| Content-Type<mark style="color:red;">\*</mark> | String | application/json |

#### Request Body

| Name                                    | Type   | Description |
| --------------------------------------- | ------ | ----------- |
| email<mark style="color:red;">\*</mark> | String | User email. |

{% tabs %}
{% tab title="200: OK Email sent." %}

{% endtab %}
{% endtabs %}

### Rest API Curl Example

{% tabs %}
{% tab title="Curl" %}

```sh
curl --location --request POST 'https://production.suggestic.com/api/v1/password_reset' \
--header 'Suggestic-Partner: suggestic' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@suggestic.com"
}'
```

{% endtab %}
{% endtabs %}
