POST api/SendPasswordEmail/getsendpasswordemail

Request Information

URI Parameters

None.

Body Parameters

SendPasswordEmailReceivedDataModels
NameDescriptionTypeAdditional information
handphone

string

None.

Name

string

None.

Email

string

None.

Request Formats

application/json, text/json

Sample:
{
  "handphone": "sample string 1",
  "Name": "sample string 2",
  "Email": "sample string 3"
}

application/xml, text/xml

Sample:
<SendPasswordEmailReceivedDataModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FarmerPublicAPI.Models.SendPasswordEmailIntegrator.ReceivedDataModels">
  <Email>sample string 3</Email>
  <Name>sample string 2</Name>
  <handphone>sample string 1</handphone>
</SendPasswordEmailReceivedDataModels>

multipart/form-data

Sample:
<SendPasswordEmailReceivedDataModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FarmerPublicAPI.Models.SendPasswordEmailIntegrator.ReceivedDataModels"><Email>sample string 3</Email><Name>sample string 2</Name><handphone>sample string 1</handphone></SendPasswordEmailReceivedDataModels>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SendPasswordEmailBaseTreeModels
NameDescriptionTypeAdditional information
message

string

None.

success

boolean

None.

data

SendPasswordEmailSentDataModels

None.

Response Formats

application/json, text/json

Sample:
{
  "message": "sample string 1",
  "success": true,
  "data": {
    "handphone": "sample string 1",
    "Name": "sample string 2",
    "Email": "sample string 3"
  }
}

application/xml, text/xml

Sample:
<SendPasswordEmailBaseTreeModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FarmerPublicAPI.Models.SendPasswordEmailIntegrator.BaseTreeModels">
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/FarmerPublicAPI.Models.SendPasswordEmailIntegrator.SentDataModels">
    <d2p1:Email>sample string 3</d2p1:Email>
    <d2p1:Name>sample string 2</d2p1:Name>
    <d2p1:handphone>sample string 1</d2p1:handphone>
  </data>
  <message>sample string 1</message>
  <success>true</success>
</SendPasswordEmailBaseTreeModels>

multipart/form-data

Sample:
<SendPasswordEmailBaseTreeModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FarmerPublicAPI.Models.SendPasswordEmailIntegrator.BaseTreeModels"><data xmlns:d2p1="http://schemas.datacontract.org/2004/07/FarmerPublicAPI.Models.SendPasswordEmailIntegrator.SentDataModels"><d2p1:Email>sample string 3</d2p1:Email><d2p1:Name>sample string 2</d2p1:Name><d2p1:handphone>sample string 1</d2p1:handphone></data><message>sample string 1</message><success>true</success></SendPasswordEmailBaseTreeModels>