POST api/Account/Action/ResetPassword
Reset the password. Requires valid token.
Request Information
URI Parameters
None.
Body Parameters
PasswordResetModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | string |
Required |
|
| NewPassword | string |
Required Data type: Password String length: inclusive between 5 and 100 |
|
| ConfirmPassword | string |
Data type: Password |
Request Formats
application/json, text/json
Sample:
{
"Token": "sample string 1",
"NewPassword": "sample string 2",
"ConfirmPassword": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MessageVM| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| total | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"data": {},
"total": 4
}