POST api/Bill

Request Information

URI Parameters

None.

Body Parameters

Bill
NameDescriptionTypeAdditional information
BILL_ID

string

None.

CUSTOMER_ID

string

None.

PRODUCT_ID

string

None.

QTY

string

None.

RATE

string

None.

BILL_DATE

string

None.

USER_ID

string

None.

TASK

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BILL_ID": "sample string 1",
  "CUSTOMER_ID": "sample string 2",
  "PRODUCT_ID": "sample string 3",
  "QTY": "sample string 4",
  "RATE": "sample string 5",
  "BILL_DATE": "sample string 6",
  "USER_ID": "sample string 7",
  "TASK": "sample string 8"
}

application/xml, text/xml

Sample:
<Bill xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiLikhLena.Models">
  <BILL_DATE>sample string 6</BILL_DATE>
  <BILL_ID>sample string 1</BILL_ID>
  <CUSTOMER_ID>sample string 2</CUSTOMER_ID>
  <PRODUCT_ID>sample string 3</PRODUCT_ID>
  <QTY>sample string 4</QTY>
  <RATE>sample string 5</RATE>
  <TASK>sample string 8</TASK>
  <USER_ID>sample string 7</USER_ID>
</Bill>

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.