GET api/mobile/userforgotpasswordverification/{emailAddress}/{passwordResetToken}/{newPassword}

Change a user's password

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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>