POST Stats/Products
Statistics about Products
Request Information
URI Parameters
None.
Body Parameters
GetStatsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DateFrom | date |
None. |
|
| DateUntil | date |
None. |
|
| Filter | Filter |
None. |
|
| Range | AdminFilterRange |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetProductsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| DateFrom | date |
None. |
|
| DateUntil | date |
None. |
|
| ItemsCount | integer |
None. |
|
| Items | Collection of ProductItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"DateFrom": "2025-12-06T09:16:24.9293951+01:00",
"DateUntil": "2025-12-06T09:16:24.9293951+01:00",
"ItemsCount": 3,
"Items": [
{
"ID": 1,
"Name": "sample string 2",
"Reference": "sample string 3",
"Quantity": 4.0,
"Amount": 5.0,
"QuantityPercent": 6.0,
"AmountPercent": 7.0
},
{
"ID": 1,
"Name": "sample string 2",
"Reference": "sample string 3",
"Quantity": 4.0,
"Amount": 5.0,
"QuantityPercent": 6.0,
"AmountPercent": 7.0
}
]
}
application/xml, text/xml
Sample:
<GetProductsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Stats">
<DateFrom>2025-12-06T09:16:24.9293951+01:00</DateFrom>
<DateUntil>2025-12-06T09:16:24.9293951+01:00</DateUntil>
<Items>
<ProductItem>
<Amount>5</Amount>
<AmountPercent>7</AmountPercent>
<ID>1</ID>
<Name>sample string 2</Name>
<Quantity>4</Quantity>
<QuantityPercent>6</QuantityPercent>
<Reference>sample string 3</Reference>
</ProductItem>
<ProductItem>
<Amount>5</Amount>
<AmountPercent>7</AmountPercent>
<ID>1</ID>
<Name>sample string 2</Name>
<Quantity>4</Quantity>
<QuantityPercent>6</QuantityPercent>
<Reference>sample string 3</Reference>
</ProductItem>
</Items>
<ItemsCount>3</ItemsCount>
</GetProductsResponse>