Through ACCOUNT_PERFORMANCE_REPORT I get the the total amount of each data point (CTR, conversion rate etc.).
The site I am working on, will have the ability to see the data sorted by campaigns as well, where CAMPAIGN_PERFORMANCE_REPORT comes in the picture.
My query is:
"SELECT Impressions, Clicks, Cost, CostPerAllConversion, AllConversionValue, AllConversions, AllConversionRate, ConversionValue, AverageCpc, CostPerConversion, Date
FROM CAMPAIGN_PERFORMANCE_REPORT
WHERE AdvertisingChannelType = SHOPPING DURING 20180501,20180506"
This does not give me 1 return for each day, but 44-45 returns pr. day.
Do I miss something in my query or can you give me hint which report type to use, when I want the total values pr. campaign (display, shopping, search) like in ACCOUNT_PERFORMANCE_REPORT?
Thanks in advance