Fetching data via Reporting API, preventing dimension with value of 0
Hi,
I'm trying to fetch a very simple trended report, that gives me the amount of visits we got on tracking codes. The JSON I'm sending looks like this:
"reportDescription":{
"reportSuiteID":rs,
"dateFrom":'2018-01-01',
"dateTo":'2018-02-01',
"dateGranularity":"day",
"elements":[
{"id":"eVar21"],
"metrics" => [{"id" => "visits"}]
}
The problems with the result I'm getting is:
1/ It returns only 10 items of eVar21
2/ There are also entries in that list that had no visits (visits:0)
3/ The result does not contain all my tracking codes with traffic
4/ The results differ from what I see within Workspace
Any idea how I can deal with these 4 problems?