POST Api/Authenticate/ResetPasswordCode

Request Information

URI Parameters

None.

Body Parameters

SendPasswordResetCodeRequest
NameDescriptionTypeAdditional information
Email

string

None.

AppUsername

string

None.

AppPassword

string

None.

ResetType

ResetType

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "AppUsername": "sample string 2",
  "AppPassword": "sample string 3",
  "ResetType": 1
}

application/xml, text/xml

Sample:
<SendPasswordResetCodeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPWAssistMobileAPI.Models">
  <AppPassword>sample string 3</AppPassword>
  <AppUsername>sample string 2</AppUsername>
  <Email>sample string 1</Email>
  <ResetType>Email</ResetType>
</SendPasswordResetCodeRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SendPasswordResetCodeRequest'.

Response Information

Resource Description

SendPasswordResetCodeResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

ServerDateTime

string

None.

ErrorType

Errors

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ErrorMessage": "sample string 2",
  "ServerDateTime": "sample string 3",
  "ErrorType": 0
}

application/xml, text/xml

Sample:
<SendPasswordResetCodeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPWAssistMobileAPI.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <ErrorType>SystemError</ErrorType>
  <ServerDateTime>sample string 3</ServerDateTime>
  <Success>true</Success>
</SendPasswordResetCodeResponse>