v1

latestSwagger 2.0BeezUP2026-07-13254876845.8 KB
Analytics - Statistics

Get the report by day for a StoreId

Get the report by day for a StoreId

post/v2/user/analytics/{storeId}/reports/byday

Path parameters

storeIdstring guid required

Your store identifier

Request body

channelIdsBeezUPCommonChannelId[]

Indicate the channel identifier list

productIdstring guid

The product identifier

catalogCategoryIdstring guid

The catalog category identifier

beginPeriodUtcDatestring date required

The begin date of the period for the report

endPeriodUtcDatestring date required

The end date of the period for the report

Example request

{
  "channelIds": [
    "2dc136a7-0d3d-4cc9-a825-a28a42c53e28"
  ],
  "productId": "578419df-1bbf-41a6-96fa-862e42182b67",
  "catalogCategoryId": "81a058a6-0451-4b79-84ef-94c58d0ed4ac",
  "beginPeriodUtcDate": "2006-11-20T00:00:00Z",
  "endPeriodUtcDate": "2006-12-20T00:00:00Z",
  "advancedFilters": {
    "marginType": "Global",
    "linkClickToOrderType": "OnClickDate",
    "performanceIndicatorFormula": {
      "firstParameter": "Cost",
      "operatorName": "Multiply",
      "secondParamter": "ROI",
      "thirdParameter": "100"
    }
  }
}

Response

Your reporting by day

currencyCodestring required

The currency code <a href="https://en.wikipedia.org/wiki/ISO_4217">(ISO 4217)</a>

Example response

{
  "currencyCode": "EUR",
  "globalPerformanceIndicators": {
    "byChannels": [
      {
        "channel": {
          "channelId": "2dc136a7-0d3d-4cc9-a825-a28a42c53e28",
          "channelName": "Amazon FRA",
          "channelImageUrl": "http://www.mydomain.com"
        }
      }
    ]
  },
  "days": [
    {
      "day": "2017-04-23T00:00:00Z",
      "byChannels": [
        {
          "channel": {
            "channelId": "2dc136a7-0d3d-4cc9-a825-a28a42c53e28",
            "channelName": "Amazon FRA",
            "channelImageUrl": "http://www.mydomain.com"
          }
        }
      ]
    }
  ]
}