Description
Get totals equal to what the invoice would produce from the order in order currency.
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
OrderNr |
integer |
0 |
123 |
pixi* order number |
| 2 |
OrderNrExternal |
string |
0 |
abcdefg |
Shop order number |
| 3 |
CustKey |
integer |
0 |
123 |
Customer ID. References CustKey in table Customers. |
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:pixiGetOrderTotals>
<dem:OrderNr>123</dem:OrderNr>
<dem:OrderNrExternal>abcdefg</dem:OrderNrExternal>
<dem:CustKey>123</dem:CustKey>
</dem:pixiGetOrderTotals>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Result set
| # |
Name |
Type |
Description |
| 1 |
OrderNr |
integer |
The ordernumber for the given OrderNrExternal |
| 2 |
EanUpc |
string |
EAN of the item in this order |
| 3 |
ItemNrSuppl |
string |
Supplier item number of the item in this order |
| 4 |
ArtName |
string |
Itemname |
| 5 |
Qty |
integer |
Quantity of items in this order |
| 6 |
Price |
integer |
Price of one item |
| 7 |
Subtotal |
integer |
Totalprice these items in this order |
| 8 |
OrderNrExternal |
string |
The external ordernumber for the given OrderNr |
| 9 |
ItemNote |
string |
ItemNote |
| 10 |
ItemPriceNoVat |
number |
Item price excluding VAT |
| 11 |
ItemAmountNoVat |
number |
Total item price of items excluding VAT |
| 12 |
OrderTotal |
number |
The total sales amount of the whole order |
| 13 |
Discount |
number |
Discount of the order |
| 14 |
VATTotal |
number |
The total VAT amount of the whole order |
| 15 |
VATHigh |
number |
The total VAT amount of the whole order, if it has VAT rate high |
| 16 |
VATLow |
number |
The total VAT amount of the whole order, if it has VAT rate low |
| 17 |
NettoTotal |
number |
The total sales amount of the whole order excluding VAT |
| 18 |
ShipCost |
number |
The total shipping costs of the whole order |
| 19 |
ShipCostNoVAT |
number |
The total shipping costs of the whole order excluding VAT |
| 20 |
TaxRateHigh |
number |
TaxRateHigh |
| 21 |
TaxRateLow |
number |
TaxRateLow |
| 22 |
OrderCurrencyCode |
string |
OrderCurrencyCode |
Additional Notes