GET Api/SalesReport/GetThisMonthHotSalesSummary?topQty={topQty}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| topQty | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
HotSalesSummaryView| Name | Description | Type | Additional information |
|---|---|---|---|
| TitleList | Collection of string |
None. |
|
| HotSalesDetailList | Collection of HotSalesDetailView |
None. |
Response Formats
application/json, text/json
Sample:
{
"TitleList": [
"sample string 1",
"sample string 2"
],
"HotSalesDetailList": [
{
"ProductName": "sample string 1",
"Qty": 2,
"Week": 1
},
{
"ProductName": "sample string 1",
"Qty": 2,
"Week": 1
}
]
}