PATCH api/MyAccount/RecoverPassword

Module : My Account; BE JIRA: ADINA-6326; This method is calling for recovery password before logged in to system.

Request Information

URI Parameters

None.

Body Parameters

RecoverUsernamePasswordRequestEntity
NameDescriptionTypeAdditional information
passwordEmail

string

None.

isSuccess

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "userEmail": "sample string 1",
  "passwordEmail": "sample string 2",
  "isuserNameReset": true,
  "isPasswordReset": true,
  "userNotFound": true,
  "uri": "sample string 6",
  "isSuccess": true
}

application/xml, text/xml

Sample:
<RecoverUsernamePasswordRequestEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Adi.BusinessEntities">
  <isPasswordReset>true</isPasswordReset>
  <isSuccess>true</isSuccess>
  <isuserNameReset>true</isuserNameReset>
  <passwordEmail>sample string 2</passwordEmail>
  <uri>sample string 6</uri>
  <userEmail>sample string 1</userEmail>
  <userNotFound>true</userNotFound>
</RecoverUsernamePasswordRequestEntity>

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 'RecoverUsernamePasswordRequestEntity'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.