# Requests Password Reset

## Request password reset by Email.

<mark style="color:orange;">`PUT`</mark> `/accounts/reset-password`

Requests Password Reset

#### Request Body

| Name                                       | Type   | Description |
| ------------------------------------------ | ------ | ----------- |
| username<mark style="color:red;">\*</mark> | String | Username    |
| tenantID<mark style="color:red;">\*</mark> | String | Tenant ID   |

{% tabs %}
{% tab title="200: OK Successful Operation" %}

```javascript
{
    "success": true
}
```

{% endtab %}

{% tab title="401: Unauthorized Unauthorized" %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="403: Forbidden Forbidden" %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="500: Internal Server Error Internal Server Error" %}

```javascript
{
   "code": 0,
  "message": "string"
}
```

{% endtab %}
{% endtabs %}
