Analytics - Tracking
Get the latest tracked orders
get/v2/user/analytics/{storeId}/tracking/orders
Path parameters
storeIdstring guid required
Your store identifier
Query parameters
countinteger
The amount of orders to retrieve
Response
Order list
Example response
{
"orders": [
{
"utcDate": "2016-08-29T09:12:33.001Z",
"channel": {
"channelId": "2dc136a7-0d3d-4cc9-a825-a28a42c53e28",
"channelName": "Amazon FRA",
"channelImageUrl": "http://www.mydomain.com"
},
"merchantOrderId": "My_Merchant_Order_Id",
"currencyCode": "EUR",
"products": [
{
"productId": "00000000-0000-0000-0000-000000000000",
"productSku": "SKU123345",
"productTitle": "My super product title",
"productImageUrl": "http://i2.cdscdn.com/pdt2/3/9/0/1/550x550/hai6901018043390/rw/haier-b20fwrss-refrigerateur-americain.jpg",
"productActive": "true",
"unitPrice": "101",
"quantity": "1",
"margin": "9"
}
]
}
]
}