hi~
We try to get uac campaign's user location report through google ads api while meeting some problem.
We use "User location view" to get uac account's data, sql like below:
SELECT
user_location_view.country_criterion_id,
segments.date,
segments.device,
segments.geo_target_county,
metrics.all_conversions,
metrics.all_conversions_from_interactions_rate,
metrics.all_conversions_value,
metrics.clicks,
metrics.cost_micros,
metrics.ctr,
metrics.impressions,
metrics.video_view_rate,
metrics.video_views
metrics.view_through_conversions
FROM user_location_view WHERE segments.date >= '2020-11-07' AND segments.date <= '2020-11-08'
;
But it seems like no data return and no errors.
So my questions are :
1. Can i get uac account user location report through this way?
2. I wonder the sql is right or not ?
Thanks for your help!