I'm looking to retrieve all Calls from our Ad Extensions. However, when I look in the UI the results are consistently different (eg, click_view=8, ui=6). One client I'm able to run the query for the days before and after — to test if it was a Time Zone issue — and the results before and after are 0 which match the UI.
I'm using the API to fetch 'click_view's where the 'click_type' is CALLS. What I can't seem to find is if there's a method to check if these click_views are valid or not.
ga_service = client.get_service('GoogleAdsService', version='v4')
query = 'SELECT click_view.gclid, click_view.location_of_presence.most_specific, \
click_view.resource_name, segments.date, segments.click_type, \
FROM click_view \
WHERE segments.date = "{}" AND segments.click_type = "CALLS" \
ORDER BY campaign.id'.format(targetDate.strftime('%Y-%m-%d')) What am I missing? There's got to be a way...