Description
Get number of all received orders for time period, if @PerLocation=1 number of received per location will be returned.
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
FromTime |
string |
1 |
2017-01-01 00:00:00 |
Filter: Start of invoice date range. |
| 2 |
UntilTime |
string |
1 |
2017-12-31 23:59:96 |
Filter: End of invoice date range. |
| 3 |
ShopID |
string |
0 |
abc |
Filter: Shop. |
| 4 |
ReceivedOrders |
integer |
0 |
NULL |
Return summary of received orders. |
| 5 |
MinutesSinceRefresh |
integer |
0 |
NULL |
Parameter @MinutesSinceRefresh does not change the results |
| 6 |
PerLocation |
boolean |
0 |
0 or 1 |
@PerLocation = 0 or empty - all locations summarized | = 1 - each location individually. |
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:pixiReportReceivedOrders>
<dem:FromTime>2017-01-01 00:00:00</dem:FromTime>
<dem:UntilTime>2017-12-31 23:59:96</dem:UntilTime>
<dem:ShopID>abc</dem:ShopID>
<dem:ReceivedOrders>NULL</dem:ReceivedOrders>
<dem:MinutesSinceRefresh>NULL</dem:MinutesSinceRefresh>
<dem:PerLocation>0 or 1</dem:PerLocation>
</dem:pixiReportReceivedOrders>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Received orders.
| # |
Name |
Type |
Description |
| 1 |
ReceivedOrders |
integer |
Number of received orders. |
Body 2: Received orders.
| # |
Name |
Type |
Description |
| 1 |
LocationID |
string |
Location of received orders. |
| 2 |
ReceivedOrders |
integer |
Number of received orders. |
Additional Notes