API Documentation

This service is in BETA. For access please Fill out the application

CONTENTS
RESOURCES
MACROS
VERBS
REPORTS

Reports API - skusOrderedOnDate

This report is intended to be quick summary of items orders on a specific date

https://api.sellerlabs.com/reports/skusOrderedOnDate?date=2015-05-06

Available filters

You may use the following request parameters to filter down the report to specific products and/or venues:

date The date for which orders will be reported
mskuLike An SQL-compatible LIKE expression to use for matching the MSKU.
(Use percent (%) characters as wildcards.)

Example: '%abc%' will match all products with 'abc' in the msku.
'xyz%' will match all products with an msku that begins with the characters 'xyz'
venueId A specific venueId for which the report should be generated

Response

A response will be returned in this format:
https://api.sellerlabs.com/v1/reports/skusOrderedOnDate?date=2015-05-05
{  
   "status":"success",
   "code":200,
   "httpCode":"200",
   "user":"254",
   "data":{  
      "offset":0,
      "limit":50,
      "count":"6",
      "prev":"",
      "next":"",
      "first":"\/reports?date=2015-05-06&offset=0&limit=50",
      "last":"\/reports?date=2015-05-06&offset=0&limit=50",
      "pages":1,
      "reports":[  
         {  
            "msku":"abc123",
            "date":"2015-05-06",
            "count":"1",
            "quantity":"1",
            "sumPriceItem":"29.99",
            "sumPriceDiscount":"0.00",
            "sumPriceShipping":"0.00",
            "sumPriceTax":"0.00"
         },
         {  
            "msku":"xyz988",
            "date":"2015-05-06",
            "count":"1",
            "quantity":"1",
            "sumPriceItem":"28.99",
            "sumPriceDiscount":"0.00",
            "sumPriceShipping":"0.00",
            "sumPriceTax":"0.00"
         },
      ]
   }
}