Hi,

We are migrating from the v7 to v9 of google-ads API. We have some 
non-regression testing and we found a strange behavior of the v9. It 
returns more than the v7 version and the metrics are not the same.

Here below the v7 version query :

Select AccountCurrencyCode, AccountDescriptiveName, AdNetworkType2, Ctr, 
Criteria, CampaignId, CampaignName, CampaignStatus, Device, Impressions, 
Interactions, InteractionTypes, Clicks, Conversions, VideoViews, Cost, Date 
>From GENDER_PERFORMANCE_REPORT
WHERE CampaignStatus IN ['ENABLED', 'PAUSED', 'REMOVED']
AND Impressions > 0
DURING <start_date>, <end_date>

And the v9 version query :

SELECT
customer.currency_code,
customer.descriptive_name,
campaign.id,
segments.ad_network_type,
campaign.name,
campaign.status,
metrics.clicks,
metrics.conversions,
metrics.video_views,
metrics.cost_micros,
metrics.ctr,
segments.date,
segments.device,
metrics.impressions,
metrics.interactions,
metrics.interaction_event_types,
ad_group_criterion.gender.type
FROM gender_view
WHERE campaign.status in ('ENABLED', 'PAUSED', 'REMOVED')
AND segments.date 
AND metrics.impressions > 0
BETWEEN '<start_date>' AND '<end_date>'

What we found is whenever we aggregate the results by a certain number of 
columns,  we retreive the same number of rows returned from the v7 query 
and with correct metrics.

This seems to be specific to *gender_view* and *age_range_view*. The others 
such as geo_view; keyword_view do not have the above problem.

Could you help us on that ?

Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7e57b952-4436-49a2-a297-61842ac4e99an%40googlegroups.com.

Reply via email to