can't find campaign.advertising_channel_type = 'DISPLAY' in ad_group_ad or keyword_view

282 views
Skip to first unread message

Amanda Smith

unread,
Apr 14, 2022, 9:03:46 AM4/14/22
to Google Ads API and AdWords API Forum
Hi,

I am trying to find our Display advertising channel type data.

When we query ad_group_ad, webpage view or keyword view we only retrieve data for "SEARCH" and "SEARCH_PARTNERS"

example of what we are running:

query = f"""
SELECT segments.date,
segments.device,
segments.keyword.ad_group_criterion,
segments.ad_network_type,
ad_group.campaign,
ad_group.id,
campaign.id,
campaign.advertising_channel_type,
metrics.impressions,
metrics.clicks,
metrics.cost_micros
FROM ad_group_ad
WHERE segments.date = "{iso_date}"
AND metrics.cost_micros > 0
"""

Where can we get the display data from?

Thanks
Amanda

Google Ads API Forum Advisor

unread,
Apr 18, 2022, 4:09:39 AM4/18/22
to adwor...@googlegroups.com

Hi Amanda,

Thanks for reaching out to the Google Ads API Forum.

I understand that you’re looking to get Display advertising channel type data. However, for us to investigate, could you provide us with the complete request and response logs with the request-id, so our team can better check?

For the client library, logging can be enabled by navigating to the Client libraries > Your client library (ex Java) > Logging documentation, which you can access from this link. You may then send the requested information via the Reply privately to author option. If this option is not available, you may send the details directly to our googleadsa...@google.com by referring to this thread.

Regards,

Google Logo
Yasar
Google Ads API Team
 


ref:_00D1U1174p._5004Q2a3Dhe:ref

Amanda Smith

unread,
Apr 25, 2022, 4:34:37 AM4/25/22
to Google Ads API and AdWords API Forum
Are you able to tell me in which google ads resource I can obtain our Display advertising channel type data or point to some clear documentation?
 
I've tried keyword_view, webpage_view, ad_group_ad. These only have 'SEARCH' or 'SEARCH_PARTNERS'.

I have no filters on the queries.

query = f"""
SELECT
segments.date,
segments.ad_network_type,
segments.device,
ad_group.id,
ad_group_criterion.criterion_id,
campaign.id,
campaign.advertising_channel_type,
metrics.impressions,
metrics.search_impression_share,
metrics.search_exact_match_impression_share,
metrics.clicks,
metrics.cost_micros,
metrics.average_cpc,
metrics.average_cpm,
metrics.conversions,
metrics.conversions_value,
metrics.search_absolute_top_impression_share,
metrics.search_top_impression_share,
metrics.absolute_top_impression_percentage,
metrics.top_impression_percentage
FROM keyword_view
WHERE campaign.status != "REMOVED"
AND ad_group.status != "REMOVED"
AND segments.date = "{iso_date}"
"""
Thanks,
Amanda

Reply all
Reply to author
Forward
0 new messages