GET api/mobile/userforgotpasswordverification?emailAddress={emailAddress}&passwordResetToken={passwordResetToken}&newPassword={newPassword}
Change a user's password
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| emailAddress |
The user's email address |
string |
Required |
| passwordResetToken |
The password reset token |
string |
Required |
| newPassword |
The new password |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
UserForgotPasswordVerificationResponse
UserForgotPasswordVerificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
Indicates if the request was successful |
boolean |
None. |
| ErrorCode |
Identifies any possible errors |
WebserviceErrorCode |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": true,
"ErrorCode": 0
}
application/xml, text/xml
Sample:
<UserForgotPasswordVerificationResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Result>true</Result> <ErrorCode>None</ErrorCode> </UserForgotPasswordVerificationResponse>