POST Stats/SalesByDayOfTheWeek
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
GetSalesByDayOfTheWeekResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| DateFrom | date |
None. |
|
| DateUntil | date |
None. |
|
| Days | Collection of DayOfTheWeek |
None. |
Response Formats
application/json, text/json
Sample:
{
"DateFrom": "2025-12-06T05:41:54.4330928+01:00",
"DateUntil": "2025-12-06T05:41:54.4330928+01:00",
"Days": [
{
"Name": "sample string 1",
"Amount": 2.0,
"Percent": 3.0
},
{
"Name": "sample string 1",
"Amount": 2.0,
"Percent": 3.0
}
]
}
application/xml, text/xml
Sample:
<GetSalesByDayOfTheWeekResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Stats">
<DateFrom>2025-12-06T05:41:54.4330928+01:00</DateFrom>
<DateUntil>2025-12-06T05:41:54.4330928+01:00</DateUntil>
<Days>
<DayOfTheWeek>
<Amount>2</Amount>
<Name>sample string 1</Name>
<Percent>3</Percent>
</DayOfTheWeek>
<DayOfTheWeek>
<Amount>2</Amount>
<Name>sample string 1</Name>
<Percent>3</Percent>
</DayOfTheWeek>
</Days>
</GetSalesByDayOfTheWeekResponse>