# Delete User by ID

| **API URL**         | {{url}}/fhir-user-service/users/reset-password |
| ------------------- | ---------------------------------------------- |
| **Method**          | PUT                                            |
| **Request Headers** | Authorization : Bearer \[token]                |
| **Description**     | Resets user password                           |

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

| **Field Name**        | **Type** | **Example**                          |
| --------------------- | -------- | ------------------------------------ |
| Authorization(Header) | String   | Authorized token from login response |
| id                    | Long     | 1                                    |

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

```postman_json
{
    "id": 1
}
```

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

```
{
    "message": "User information successfully deleted.",
    "entity": true,
    "status": true,
    "entityList": null,
    "responseCode": 200,
    "totalCount": null
}
```
