Description
Returns all invoice lines of the corresponding POS invoice, meaning all sold items for further reporting
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
InvoiceNr |
string |
1 |
abcdef |
POS Invoice number |
| 2 |
ResultCode |
string |
0 |
ABC |
Result Code - output |
| 3 |
ResultText |
string |
0 |
ABC |
Result Text - output |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
<soapenv:Header/>
<soapenv:Body>
<dem:pixiGetPosInvoiceLines>
<dem:InvoiceNr>abcdef</dem:InvoiceNr>
<dem:ResultCode>ABC</dem:ResultCode>
<dem:ResultText>ABC</dem:ResultText>
</dem:pixiGetPosInvoiceLines>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Result set
| # |
Name |
Type |
Description |
| 1 |
ItemNrInt |
string |
internal item number to identify the item (ItemNrInt = ID used to match to the shops items) |
| 2 |
EANUPC |
string |
item EAN |
| 3 |
ItemName |
string |
item name |
| 4 |
ItemQty |
integer |
item quantity |
| 5 |
InvDate |
string |
invoice date |
| 6 |
InvoiceNr |
string |
ID of corresponding POS invoice |
| 7 |
ItemPrice_Brutto |
number |
item price including VAT |
| 8 |
ItemPrice_Netto |
number |
item price excluding VAT |
| 9 |
Discount |
number |
discount per item, can be empty |
| 10 |
ItemPrice_Total |
number |
item price including VAT and discount, i.e. price for which item has been sold |
Additional Notes