Show Developer Menu

GET /reports/tags

Returns a tag report summarizing tag usage

Example Request
curl 'https://{brand}.reamaze.io/api/v1/reports/tags' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json'
Example Response
{
  "tags":
    {
      ...
      "Red": 2,
      "Blue", 4
      ...
    },
  "start_date": "2017-07-01",
  "end_date": "2017-07-30"
}
Optional Params
  • The start_date value can used to choose the start of the report.
  • The end_date value can used to choose the end of the report.

The start and end dates of the report will default to the last 30 days. Time frames can be no smaller than 1 day and no larger than 1 year.