Hello,
I'm having issues with the data retrieved through geographic_view
This is my query with Google Ads API v8:
SELECT customer.descriptive_name,
campaign.id,
campaign.name, geographic_view.country_criterion_id, segments.date, metrics.clicks, metrics.conversions, metrics.conversions_value, metrics.cost_micros, metrics.impressions, metrics.view_through_conversions FROM geographic_view
WHERE geographic_view.location_type = LOCATION_OF_PRESENCE AND segments.date BETWEEN '2021-10-21' AND '2021-10-21'
I'm running the query on the Google Ads account
503-220-2150 (I guess this is not confidential).
From the UI I can see 2101 clicks for the whole account on the 2021-10-21; using the old Google Adwords API I was able to get the same amount of clicks (LocationType', 'EQUALS', ['LOCATION_OF_PRESENCE'] + IsTargetingLocation', 'IN', ['true','false']), but from new APIs I get 2075 clicks
Eg in the old report for the country_criteria_id = 2076 and campaign_id = 885148015 I've 21 clicks, while in the new one 19 (2 are missing). I've click discrepancies on 17 returned rows, and impression discrepancies on 344 rows.
Can you tell me what is wrong with my query? I've not found a way to pass the old clause IsTargetingLocation', 'IN', ['true','false']
Thank you!