Hello,
I am trying to get performance metrics (i.e. impressions, clicks, conversions) for a bunch of campaigns, including search and UAC, together with GEO location information.
I am running the AdWords Python client libraries. The following awql query
SELECT
CampaignId,
Impressions,
Clicks,
Conversions
FROM GEO_PERFORMANCE_REPORT
DURING LAST_7_DAYS
The obtained csv contains only search campaigns. How can I get geo performance for UAC campaigns too?
Thanks in advance