POST api/uniconta-report/DeliveryNote
Request Information
URI Parameters
None.
Body Parameters
ReportInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderNumber | string |
None. |
|
| LineRowID | integer |
None. |
|
| ItemNumber | string |
None. |
|
| Palletnumber | string |
None. |
|
| PurchaseNumber | string |
None. |
|
| PrinterName | string |
None. |
|
| ShouldPrint | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderNumber": "sample string 1",
"LineRowID": 2,
"ItemNumber": "sample string 3",
"Palletnumber": "sample string 4",
"PurchaseNumber": "sample string 5",
"PrinterName": "sample string 6",
"ShouldPrint": true
}
application/xml, text/xml
Sample:
<ReportInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EAMobileReport.Models"> <ItemNumber>sample string 3</ItemNumber> <LineRowID>2</LineRowID> <OrderNumber>sample string 1</OrderNumber> <Palletnumber>sample string 4</Palletnumber> <PrinterName>sample string 6</PrinterName> <PurchaseNumber>sample string 5</PurchaseNumber> <ShouldPrint>true</ShouldPrint> </ReportInputModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>