# Forgot Password Validation

| **API URL**         | {{url}}/fhir-user-service/users/forgot-password |
| ------------------- | ----------------------------------------------- |
| **Method**          | POST                                            |
| **Request Headers** | Authorization : Bearer \[token]                 |
| **Description**     | Handles forgot password validation              |

#### **Input** <a href="#accountcreate-input" id="accountcreate-input"></a>

| **Field Name**        | **Type** | **Example**                          |
| --------------------- | -------- | ------------------------------------ |
| Authorization(Header) | String   | Authorized token from login response |
| username              | String   | Username                             |

#### **Sample Input:** <a href="#accountcreate-sampleinput" id="accountcreate-sampleinput"></a>

```postman_json
{
    "username": "fhiradmin@mtdlabs.com"
}
```

#### **Sample Output:** <a href="#accountcreate-sampleoutput" id="accountcreate-sampleoutput"></a>

```
{
    "dateTime": 1713446803563,
    "status": true,
    "errorCode": 200,
    "message": "An email will send if the account exists in our system.",
}
```
