POST api/ForgetPassword

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
objForgetPassword
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "UserTypeID": 2,
  "ConfirmOTP": "sample string 3",
  "CurrentPassword": "sample string 4",
  "NewPassword": "sample string 5",
  "Action": "sample string 6",
  "Status": "sample string 7"
}

text/html

Sample:
{"UserName":"sample string 1","UserTypeID":2,"ConfirmOTP":"sample string 3","CurrentPassword":"sample string 4","NewPassword":"sample string 5","Action":"sample string 6","Status":"sample string 7"}

application/xml, text/xml

Sample:
<ForgetPassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViewModels.Account">
  <Action>sample string 6</Action>
  <ConfirmOTP>sample string 3</ConfirmOTP>
  <CurrentPassword>sample string 4</CurrentPassword>
  <NewPassword>sample string 5</NewPassword>
  <Status>sample string 7</Status>
  <UserName>sample string 1</UserName>
  <UserTypeID>2</UserTypeID>
</ForgetPassword>

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