# Reset Password

| **API URL**     | {{url}}/user-service/user/reset-password/{{token}} |
| --------------- | -------------------------------------------------- |
| **Method**      | POST                                               |
| **Description** | Reset password after Forgot password               |

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

| **Field Name** | **Type** | **Mandatory** | **Example**     |
| -------------- | -------- | ------------- | --------------- |
| password       | String   | Yes           | Hashed password |

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

#### { <a href="#resetpassword" id="resetpassword"></a>

"password": "3901e08e724bb73a72137e03e2f03d54d70eaeea39f8a7e0459f15d9e80585ffd2159283b8324d72f7ba8c2aa2f0e82e5c1b685d7ef569e2ebad02d71ba4076e"

}

**Sample Output:**

```
{
    "message": "Password has been set successfully.",
    "entity": true,
    "status": true,
    "entityList": null,
    "responseCode": 200,
    "totalCount": null
}
```
