Description
pixi* Seal - get logistic quality
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
DaysBack |
integer |
0 |
25 |
Number of days back, that the report should take in consideration |
| 2 |
ShopID |
string |
0 |
ABC |
Calculate the logistic quality for specified shop |
| 3 |
ExcludeZeros |
boolean |
0 |
1 |
Used for filter parameter in pixi* Report client |
| 4 |
OnlyItemsOnStock |
boolean |
0 |
0 |
Calculate the logistic quality only for orders where enough items were on stock |
| 5 |
CalcSeal |
boolean |
0 |
1 |
Used for pixi* Seal app, Dashboard app where we calculate Seal (versandsiegel) percentage |
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:pixiReport_LogisticQuality_Details>
<dem:DaysBack>25</dem:DaysBack>
<dem:ShopID>ABC</dem:ShopID>
<dem:ExcludeZeros>1</dem:ExcludeZeros>
<dem:OnlyItemsOnStock>0</dem:OnlyItemsOnStock>
<dem:CalcSeal>1</dem:CalcSeal>
</dem:pixiReport_LogisticQuality_Details>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Result set when parameter CalcSeal = 0
| # |
Name |
Type |
Description |
| 1 |
DaysToShip |
integer |
Number of days needed to ship the package |
| 2 |
OrderNr |
integer |
pixi* order number of the shipped package |
| 3 |
CreateDate |
string |
Date of order creation in pixi* |
| 4 |
Shipdate |
string |
Date of shipping in pixi* |
Body 2: Result set when parameter CalcSeal = 1
| # |
Name |
Type |
Description |
| 1 |
DaysToShip |
integer |
Number of days needed to ship the packages |
| 2 |
NRofORders |
integer |
Total number of shipped orders |
| 3 |
Percentage |
string |
Calculated percentage of shipped orders |
| 4 |
AllPackages |
string |
Total number of all orders used in calculation |
| 5 |
par_ShopId |
string |
@ShopId input parameter value or -alle- for all shops |
| 6 |
par_DaysBack |
integer |
@DaysBack input parameter value |
Additional Notes