POST api/Verification/forgetPassword

Request Information

URI Parameters

None.

Body Parameters

customer_verify_request
NameDescriptionTypeAdditional information
code

string

None.

key

string

None.

email_id

string

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "key": "sample string 2",
  "email_id": "sample string 3"
}

application/xml, text/xml

Sample:
<customer_verify_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <code>sample string 1</code>
  <email_id>sample string 3</email_id>
  <key>sample string 2</key>
</customer_verify_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

customer_verify_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

customer_id

string

None.

customer_name

string

None.

customer_code

string

None.

customer_password

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "customer_id": "sample string 3",
  "customer_name": "sample string 4",
  "customer_code": "sample string 5",
  "customer_password": "sample string 6"
}

application/xml, text/xml

Sample:
<customer_verify_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <customer_code>sample string 5</customer_code>
  <customer_id>sample string 3</customer_id>
  <customer_name>sample string 4</customer_name>
  <customer_password>sample string 6</customer_password>
  <message>sample string 2</message>
  <success>true</success>
</customer_verify_response>