Description
This Call get the disposition changes according to the "change" integer for the last "X" days
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
HistoryDays |
integer |
0 |
123 |
Number of history days to use in the formula (int default 180) |
| 2 |
SecurityDays |
integer |
0 |
123 |
Number of security days for delivery (int default 7) |
| 3 |
DesiredStockTurnOver |
integer |
0 |
123 |
Desired stock turn over (int default 30) |
| 4 |
ShowChangesAbovePercentage |
string |
0 |
string |
Show changes above certian procentage (float = 0.1) |
| 5 |
SupplNR |
string |
0 |
Sample text |
Filter by SupplNR (varchar default null) |
| 6 |
Rows |
integer |
0 |
123 |
Rows to show (int, default 100) |
| 7 |
ItemKeyStart |
integer |
0 |
123 |
Sorting by Item key (int default 0) |
| 8 |
ConfigtypeKey |
integer |
0 |
123 |
ConfigtypeKey (int default null) |
| 9 |
Tags |
string |
0 |
Sample text |
Tags (varchar default null) |
| 10 |
SortColumn |
string |
0 |
Sample text |
Sort Column (varchar default itemname) |
| 11 |
SortDirection |
string |
0 |
Sample text |
Sort Direction (varchar default a) |
| 12 |
Start |
integer |
0 |
123 |
Show result from start (int default 0) |
| 13 |
Suppliers |
string |
0 |
Sample text |
Suppliers (varchar default null) |
| 14 |
Categories |
string |
0 |
Sample text |
Categories (varchar default null) |
| 15 |
Locations |
string |
0 |
Sample text |
Locations (varchar default null) |
| 16 |
Shops |
string |
0 |
Sample text |
Shops (varchar default null) |
| 17 |
Pos |
string |
0 |
Sample text |
Pos (varchar default null) |
| 18 |
Location |
string |
0 |
Sample text |
Location varchar default null |
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:pixiGetMinStockChanges>
<dem:HistoryDays>123</dem:HistoryDays>
<dem:SecurityDays>123</dem:SecurityDays>
<dem:DesiredStockTurnOver>123</dem:DesiredStockTurnOver>
<dem:ShowChangesAbovePercentage>string</dem:ShowChangesAbovePercentage>
<dem:SupplNR>Sample text</dem:SupplNR>
<dem:Rows>123</dem:Rows>
<dem:ItemKeyStart>123</dem:ItemKeyStart>
<dem:ConfigtypeKey>123</dem:ConfigtypeKey>
<dem:Tags>Sample text</dem:Tags>
<dem:SortColumn>Sample text</dem:SortColumn>
<dem:SortDirection>Sample text</dem:SortDirection>
<dem:Start>123</dem:Start>
<dem:Suppliers>Sample text</dem:Suppliers>
<dem:Categories>Sample text</dem:Categories>
<dem:Locations>Sample text</dem:Locations>
<dem:Shops>Sample text</dem:Shops>
<dem:Pos>Sample text</dem:Pos>
<dem:Location>Sample text</dem:Location>
</dem:pixiGetMinStockChanges>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Result set
| # |
Name |
Type |
Description |
| 1 |
ItemKey |
integer |
Item Id |
| 2 |
EANUPC |
string |
Item EAN |
| 3 |
ItemName |
string |
Item name |
| 4 |
DailyQty |
string |
Dayly transitions of the article |
| 5 |
DailyQtyBefore |
string |
The daily qty for this item, in the period before the set days (if you set 30 days for History days, this is the DailyQty Day 31-60) |
| 6 |
Trend |
string |
Trend of the sales of this article (comparing DailyQty to DailyQtyBefore) |
| 7 |
MinStockQty |
integer |
MinStockQty |
| 8 |
RecommendedMinStockQty |
string |
Recommended RecommendedMinStockQty |
| 9 |
MinOrderQty |
integer |
MinOrderQty |
| 10 |
RecommendedMinOrderQty |
string |
Recommended MinOrderQty (Mindestbestellmenge) |
| 11 |
ChangeMinStockQty |
string |
Change of MinStockQty in percent |
| 12 |
ChangeMinOrderQty |
string |
Change of MinOrderQty in percent |
| 13 |
Quantity |
integer |
Actual Stock Quantity |
| 14 |
StockTurnover |
integer |
How long your stock will last at the current DailyQty (Lagerreichweite) |
| 15 |
SupplNR |
string |
Last used supplier for this item |
| 16 |
SupplierName |
string |
SupplierName |
| 17 |
DefaultDeliveryDays |
integer |
Nr of days, this supplier normaly takes to deliver (defaults to 7 if not set at the supplier) |
| 18 |
NumOfOrders |
integer |
Number Of Orders |
| 19 |
RowNr |
integer |
Row number |
| 20 |
TotalRows |
integer |
Total Rows |
| 21 |
NrOfRecordsLeft |
integer |
NrOfRecordsLeft |
Additional Notes