POST api/mobile/userforgotpasswordverification
Change a user's password
Request Information
URI Parameters
None.
Body Parameters
UserForgotPasswordVerificationRequest
UserForgotPasswordVerificationRequestName | Description | Type | Additional information |
---|---|---|---|
EmailAddress |
The email address of the user password to change |
string |
None. |
PasswordResetToken |
The password reset token |
string |
None. |
NewPassword |
The users new password |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "EmailAddress": "sample string 1", "PasswordResetToken": "sample string 2", "NewPassword": "sample string 3" }
application/xml, text/xml
Sample:
<UserForgotPasswordVerificationRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <EmailAddress>sample string 1</EmailAddress> <PasswordResetToken>sample string 2</PasswordResetToken> <NewPassword>sample string 3</NewPassword> </UserForgotPasswordVerificationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UserForgotPasswordVerificationResponse
UserForgotPasswordVerificationResponseName | 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>