POST api/PasswordRecovery/ValidateRecoveryToken
Request Information
URI Parameters
None.
Body Parameters
ValidateRecoveryTokenRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Token": "sample string 1"
}
Response Information
Resource Description
ValidateRecoveryTokenResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| UserId | string |
None. |
|
| IsExpired | boolean |
None. |
|
| IsAlreadyUsed | boolean |
None. |
|
| TempPasswordExpired | boolean |
None. |
|
| TemporaryPassword | string |
None. |
|
| Error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"UserId": "sample string 2",
"IsExpired": true,
"IsAlreadyUsed": true,
"TempPasswordExpired": true,
"TemporaryPassword": "sample string 6",
"Error": "sample string 7"
}