POST Stats/Classifications
Statistics about Classifications. Only the top ones (without Parents)
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
GeClassificationsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| DateFrom | date |
None. |
|
| DateUntil | date |
None. |
|
| ItemsCount | integer |
None. |
|
| Items | Collection of ClassificationItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"DateFrom": "2025-12-06T09:16:30.4497005+01:00",
"DateUntil": "2025-12-06T09:16:30.4497005+01:00",
"ItemsCount": 3,
"Items": [
{
"ID": 1,
"Name": "sample string 2",
"Quantity": 3.0,
"Amount": 4.0,
"QuantityPercent": 5.0,
"AmountPercent": 6.0
},
{
"ID": 1,
"Name": "sample string 2",
"Quantity": 3.0,
"Amount": 4.0,
"QuantityPercent": 5.0,
"AmountPercent": 6.0
}
]
}
application/xml, text/xml
Sample:
<GeClassificationsResponse 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:30.4497005+01:00</DateFrom>
<DateUntil>2025-12-06T09:16:30.4497005+01:00</DateUntil>
<Items>
<ClassificationItem>
<Amount>4</Amount>
<AmountPercent>6</AmountPercent>
<ID>1</ID>
<Name>sample string 2</Name>
<Quantity>3</Quantity>
<QuantityPercent>5</QuantityPercent>
</ClassificationItem>
<ClassificationItem>
<Amount>4</Amount>
<AmountPercent>6</AmountPercent>
<ID>1</ID>
<Name>sample string 2</Name>
<Quantity>3</Quantity>
<QuantityPercent>5</QuantityPercent>
</ClassificationItem>
</Items>
<ItemsCount>3</ItemsCount>
</GeClassificationsResponse>