Hi, We found some strange behavior in the google ads api. When requesting impressions and other metrics, rows are missing where impressions are zero but some other metric is greater than zero. According to this <https://developers.google.com/google-ads/api/docs/reporting/zero-impressions> article this should not happen because all rows with at least one metric greater than zero should be returned.
GAQL query for which we have the problem: return "SELECT ad_group.id,\n" + " segments.date,\n" + " metrics.impressions,\n" + " metrics.absolute_top_impression_percentage,\n" + " metrics.content_impression_share,\n" + " metrics.content_rank_lost_impression_share,\n" + " metrics.search_absolute_top_impression_share,\n" + " metrics.search_budget_lost_absolute_top_impression_share,\n" + " metrics.search_budget_lost_top_impression_share,\n" + " metrics.search_exact_match_impression_share,\n" + " metrics.search_impression_share,\n" + " metrics.search_rank_lost_absolute_top_impression_share,\n" + " metrics.search_rank_lost_impression_share,\n" + " metrics.search_rank_lost_top_impression_share,\n" + " metrics.search_top_impression_share,\n" + " metrics.top_impression_percentage\n" + "FROM\n" + " ad_group\n" + "WHERE\n" + " segments.date >= '" + startDate.toString() + "' AND\n" + " segments.date <= '" + endDate.toString() + "'"; Could you give us some more information on why this is happening? Thanks! Best, Daan -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 "AdWords API and Google Ads 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/28a978ea-131b-41d9-a9e7-08120f67bbd7n%40googlegroups.com.
