Hello,

I am using the Gem `gem 'google-adwords-api', '~> 1.5.0'` in my ruby 
project.
report_definition = {
    selector: {
        fields: %w(CampaignId Impressions Clicks Cost),
        # Predicates are optional.
        predicates: {
            field: 'CampaignId',
            operator: 'IN',
            values: campaigns.collect { |c| c[:id] }
        },
        date_range: {min: start_date, max: start_date}
    },
    report_name: '-',
    report_type: 'CAMPAIGN_PERFORMANCE_REPORT',
    download_format: 'XML',
    date_range_type: 'CUSTOM_DATE'
}

Calling the API to get the campaigns:
target_xml = report_utils.download_report(report_definition)


This is throwing the following error:

AdwordsApi::Errors::ReportXmlError: HTTP code: 400, error type: 
'RateExceededError.RATE_EXCEEDED', trigger: 'Basic Access Daily Reporting 
Quota', field path: ''

The documentation says that with the rate limit, I should receive other 
fields such as "rateScope, rateName, retryAfterSeconds"but I cannot find 
those additional params to debug the issue.
This error started coming since 14th November. It's critical for us to 
rectify, so can someone help me what we could be missing here or if 
something changed from API side?

Thank you,
Murtaza Basrai

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4678ee11-b20a-4cfd-b929-55617305d356%40googlegroups.com.

Reply via email to