POST api/v1/InvoicePrint
Request Information
URI Parameters
None.
Body Parameters
InvPrintInput| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceID | integer |
None. |
|
| LocID | integer |
None. |
|
| Result | integer |
None. |
|
| BillType | string |
None. |
|
| TaxanomyID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"InvoiceID": 1,
"LocID": 2,
"Result": 3,
"BillType": "sample string 4",
"TaxanomyID": 5
}
application/xml, text/xml
Sample:
<InvPrintInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <BillType>sample string 4</BillType> <InvoiceID>1</InvoiceID> <LocID>2</LocID> <Result>3</Result> <TaxanomyID>5</TaxanomyID> </InvPrintInput>
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. |