POST api/v1/FactoryInvoiceDiscSave
Request Information
URI Parameters
None.
Body Parameters
FactoryInvoiceDiscSaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| UserStdOrderID | integer |
None. |
|
| InvoiceID | integer |
None. |
|
| OutletID | integer |
None. |
|
| CompID | integer |
None. |
|
| ItemID | integer |
None. |
|
| DiscPer | decimal number |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserStdOrderID": 1,
"InvoiceID": 2,
"OutletID": 3,
"CompID": 4,
"ItemID": 5,
"DiscPer": 6.0,
"Remarks": "sample string 7"
}
application/xml, text/xml
Sample:
<FactoryInvoiceDiscSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>4</CompID> <DiscPer>6</DiscPer> <InvoiceID>2</InvoiceID> <ItemID>5</ItemID> <OutletID>3</OutletID> <Remarks>sample string 7</Remarks> <UserStdOrderID>1</UserStdOrderID> </FactoryInvoiceDiscSaveInput>
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. |