Use this call to retrieve report about "Top ordered products" for top "10" products
Name | Type | Description |
---|---|---|
type | TopProductsType | Used to specify type of report: 1 - group result by quantity, 2 - group result by turnover |
period | Int32 | Used to specify report number of months |
numRows | Int32 | Number of rows required |
orderStatus | Int32 | Order status |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Dashboards/GetTopProducts
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
type=1&period=1&numRows=1&orderStatus=1
This is an example of the response JSON. Results will vary depending on your data.
[
{
"RowNum": 1,
"Quantity": 2,
"Cost": 3.1,
"Title": "sample string 4",
"SKU": "sample string 5",
"Currency": "sample string 6"
}
]