Receiving negative values for Cost/Impressions in ADGROUP_PERFORMANCE_REPORT

82 views
Skip to first unread message

Will Percival

unread,
May 2, 2019, 5:15:50 PM5/2/19
to AdWords API and Google Ads API Forum
I'm pulling down an ADGROUP_PERFORMANCE_REPORT to track hourly impression/cost/click data. Starting last night, my automated pull started erroring out, and when I did some digging this morning, I found that it's because negative values in double quotes are being returned for metrics that cannot be negative.

Here's an example row from my resulting dataframe (with sensitive data redacted):


     
Campaign ID     Campaign      Ad group ID      Ad group    Impressions    Clicks       Cost          Day      Hour of day
242          C_ID       C_NAME            AG_ID       AG_NAME             32         0   "-41741"   2019-05-01                0


Is this some sort of data correction? I'm also seeing values like "-1" for Impressions.

Any insights would be much appreciated. 

W

googleadsapi...@google.com

unread,
May 3, 2019, 3:31:47 AM5/3/19
to AdWords API and Google Ads API Forum
Hi Will,

We have an ongoing issue that's affecting all reporting stats in AdWords API, Google Ads API, and Google Ads Scripts. Basically, the stats are incorrect for Apr 30 - May 1. Please keep an eye on our blog for the updates regarding this issue. 

Regards,
Hiroyuki
Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    https://ads-developers.googleblog.com/search/label/google_ads_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwor...@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscribe@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 "AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/32286152-59f7-4834-97ef-939cf2499bdd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

wper...@gmail.com

unread,
May 7, 2019, 7:00:23 PM5/7/19
to AdWords API and Google Ads API Forum
Hi Hiroyuki,

Is there any update on this? The last update to the blog was 4 days ago. We need this reporting data for our clients...

W

googleadsapi...@google.com

unread,
May 8, 2019, 1:40:12 AM5/8/19
to AdWords API and Google Ads API Forum
Hi Will,

Our team is still working on this. Rest assured that we will provide updates in our blog and this thread once we receive any.

Regards,
Hiroyuki
Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    https://ads-developers.googleblog.com/search/label/google_ads_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Zweitze

unread,
May 9, 2019, 3:24:14 AM5/9/19
to AdWords API and Google Ads API Forum
Based on these findings we activated a similar check and noticed negative impressions (impressions = -1, once -2). This happens in over 10% of our accounts.

The report definition:
<?xml version="1.0" encoding="utf-8"?>
<reportDefinition>
   <selector xmlns="https://adwords.google.com/api/adwords/cm/v201809">
       <fields>CampaignId</fields>
       <fields>AdGroupId</fields>
       <fields>KeywordId</fields>
       <fields>Query</fields>
       <fields>QueryMatchTypeWithVariant</fields>
       <fields>Device</fields>
       <fields>AdNetworkType2</fields>
       <fields>AbsoluteTopImpressionPercentage</fields>
       <fields>TopImpressionPercentage</fields>
       <fields>AveragePosition</fields>
       <fields>Clicks</fields>
       <fields>Cost</fields>
       <fields>Impressions</fields>
       <fields>Interactions</fields>
       <predicates>
           <field>CampaignStatus</field>
           <operator>IN</operator>
           <values>ENABLED</values>
           <values>PAUSED</values>
           <values>REMOVED</values>
       </predicates>
       <predicates>
           <field>AdGroupStatus</field>
           <operator>IN</operator>
           <values>ENABLED</values>
           <values>PAUSED</values>
           <values>REMOVED</values>
       </predicates>
       <dateRange>
           <min>20190411</min>
           <max>20190508</max>
       </dateRange>
   </selector>
   <reportName xmlns="https://adwords.google.com/api/adwords/cm/v201809">872-671-3425 QueryResult</reportName>
   <reportType xmlns="https://adwords.google.com/api/adwords/cm/v201809">SEARCH_QUERY_PERFORMANCE_REPORT</reportType>
   <dateRangeType xmlns="https://adwords.google.com/api/adwords/cm/v201809">CUSTOM_DATE</dateRangeType>
   <downloadFormat xmlns="https://adwords.google.com/api/adwords/cm/v201809">GZIPPED_XML</downloadFormat>
</reportDefinition>

Unfortunately I can't show snippets of the resulting report - maybe other fields were negative too.
Is this the same issue?

googleadsapi...@google.com

unread,
May 9, 2019, 5:52:51 AM5/9/19
to AdWords API and Google Ads API Forum
Hi,

Yes, our team is actively working on correcting the data from 12:01am on May 1 to 4:00am May 2 (PDT). You may check our blog for more details about the issue.

Regards,
Hiroyuki
Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    https://ads-developers.googleblog.com/search/label/google_ads_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Reply all
Reply to author
Forward
0 new messages