POST api/mobile/driverforgotpasswordverification

Request Information

URI Parameters

None.

Body Parameters

DriverForgotPasswordVerificationRequest
NameDescriptionTypeAdditional information
EmailAddress

The email address of the drivers 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:
<DriverForgotPasswordVerificationRequest 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>
</DriverForgotPasswordVerificationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DriverForgotPasswordVerificationResponse
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:
<DriverForgotPasswordVerificationResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Result>true</Result>
  <ErrorCode>None</ErrorCode>
</DriverForgotPasswordVerificationResponse>