POST api/LL_Order

Request Information

URI Parameters

None.

Body Parameters

LL_Order
NameDescriptionTypeAdditional information
USER_ID

string

None.

TOTAL_QTY

string

None.

LLUSER_ID

string

None.

TOTAL_PRICE

string

None.

TOTAL_DISC

string

None.

PRODUCT_ID

string

None.

RATE

string

None.

QTY

string

None.

DISCOUNT

string

None.

Request Formats

application/json, text/json

Sample:
{
  "USER_ID": "sample string 1",
  "TOTAL_QTY": "sample string 2",
  "LLUSER_ID": "sample string 3",
  "TOTAL_PRICE": "sample string 4",
  "TOTAL_DISC": "sample string 5",
  "PRODUCT_ID": "sample string 6",
  "RATE": "sample string 7",
  "QTY": "sample string 8",
  "DISCOUNT": "sample string 9"
}

application/xml, text/xml

Sample:
<LL_Order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiLikhLena.Models">
  <DISCOUNT>sample string 9</DISCOUNT>
  <LLUSER_ID>sample string 3</LLUSER_ID>
  <PRODUCT_ID>sample string 6</PRODUCT_ID>
  <QTY>sample string 8</QTY>
  <RATE>sample string 7</RATE>
  <TOTAL_DISC>sample string 5</TOTAL_DISC>
  <TOTAL_PRICE>sample string 4</TOTAL_PRICE>
  <TOTAL_QTY>sample string 2</TOTAL_QTY>
  <USER_ID>sample string 1</USER_ID>
</LL_Order>

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.