POST api/PendingInvoice
Request Information
URI Parameters
None.
Body Parameters
Collection of pendingINVOICE| Name | Description | Type | Additional information |
|---|---|---|---|
| Ordernb | string |
None. |
|
| DISC | string |
None. |
|
| ItemCode | string |
None. |
|
| PRICE | decimal number |
None. |
|
| DISCOUNT | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Ordernb": "sample string 1",
"DISC": "sample string 2",
"ItemCode": "sample string 3",
"PRICE": 4.0,
"DISCOUNT": 5.0
},
{
"Ordernb": "sample string 1",
"DISC": "sample string 2",
"ItemCode": "sample string 3",
"PRICE": 4.0,
"DISCOUNT": 5.0
}
]
application/xml, text/xml
Sample:
<ArrayOfpendingINVOICE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WEBAPIDEMO">
<pendingINVOICE>
<DISC>sample string 2</DISC>
<DISCOUNT>5</DISCOUNT>
<ItemCode>sample string 3</ItemCode>
<Ordernb>sample string 1</Ordernb>
<PRICE>4</PRICE>
</pendingINVOICE>
<pendingINVOICE>
<DISC>sample string 2</DISC>
<DISCOUNT>5</DISCOUNT>
<ItemCode>sample string 3</ItemCode>
<Ordernb>sample string 1</Ordernb>
<PRICE>4</PRICE>
</pendingINVOICE>
</ArrayOfpendingINVOICE>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |