Hello,
Im trying to make a GAQL to retrieve some data like Clicks, Impressions
from my campaigns separated by City and State (Like NY or FL or CA)
I'm using Python as programming language and im using google-ads =
"^21.3.0" as lib to access the google ads data.
Im also authenticated with an MCC account.
This is my Query:
query = f"""
SELECT
campaign.name,
metrics.impressions,
metrics.clicks,
metrics.cost_micros,
campaign.id,
segments.date,
customer.id,
campaign.campaign_group,
customer.descriptive_name,
campaign_criterion.proximity.address.city_name,
campaign_criterion.proximity.address.country_code,
campaign_criterion.proximity.address.postal_code,
campaign_criterion.proximity.address.province_name
FROM location_view
WHERE
segments.date = '{date}'
AND
campaign_criterion.type = 'PROXIMITY'
"""
My problem is: The campaign_criterion.proximity fields like city_name,
country_code, postal_code, etc, just dont appear in my result, its just
like i didnt put them it in my select. Is there something wrong with my
query or maybe is there possible that my MCC account doesnt have all
permissions that is needed to get this information ?
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
---
You received this message because you are subscribed to the Google Groups
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/adwords-api/83a85342-1bbd-49a1-bb30-48c59a31b14dn%40googlegroups.com.