POST api/ConfirmOrder

Request Information

URI Parameters

None.

Body Parameters

orders
NameDescriptionTypeAdditional information
DISTRIBUTOR_ID

string

None.

TOTAL_QTY

string

None.

TOTAL_PRODUCTS

string

None.

EMPLOYEE_ID

string

None.

LATITUDE

string

None.

LONGITUDE

string

None.

REMARK

string

None.

PHOTO

Collection of byte

None.

EXTRA1

string

None.

EXTRA2

string

None.

EXTRA3

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DISTRIBUTOR_ID": "sample string 1",
  "TOTAL_QTY": "sample string 2",
  "TOTAL_PRODUCTS": "sample string 3",
  "EMPLOYEE_ID": "sample string 4",
  "LATITUDE": "sample string 5",
  "LONGITUDE": "sample string 6",
  "REMARK": "sample string 7",
  "PHOTO": "QEA=",
  "EXTRA1": "sample string 8",
  "EXTRA2": "sample string 9",
  "EXTRA3": "sample string 10"
}

application/xml, text/xml

Sample:
<orders xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiEllora.Controllers">
  <DISTRIBUTOR_ID>sample string 1</DISTRIBUTOR_ID>
  <EMPLOYEE_ID>sample string 4</EMPLOYEE_ID>
  <EXTRA1>sample string 8</EXTRA1>
  <EXTRA2>sample string 9</EXTRA2>
  <EXTRA3>sample string 10</EXTRA3>
  <LATITUDE>sample string 5</LATITUDE>
  <LONGITUDE>sample string 6</LONGITUDE>
  <PHOTO>QEA=</PHOTO>
  <REMARK>sample string 7</REMARK>
  <TOTAL_PRODUCTS>sample string 3</TOTAL_PRODUCTS>
  <TOTAL_QTY>sample string 2</TOTAL_QTY>
</orders>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.