I'm using the google-adwords-api ruby gem to fetch ad hoc report data. As 
far as I can tell I'm using up to date versions of everything.

  * google-ads-common (0.8.0)
  * google-adwords-api (0.7.0)
  report_utils(:v201206)

The problem is that I cannot seem to get report data for "Remarketing" 
campaigns. Everything else comes down just fine.

My report definition looks like this

        :selector => {
          :fields => self.class.field_names,
          :date_range => {:min => date.strftime("%Y%m%d"), :max => 
date.strftime("%Y%m%d") },
        :report_name => name,
        :report_type => "KEYWORDS_PERFORMANCE_REPORT",
        :download_format => "XML",
        :date_range_type => "CUSTOM_DATE",
        :include_zero_impressions => "false"

I've tried to add these predicates, as far as I can understand 
"Remarketing" campaigns are part of the "Content / Display" network. The 
result here is that I get the column name header xml, but no data.

          :predicates => [
          {
            :field => 'AdNetworkType1',
            :operator => 'IN',
            :values => ["CONTENT"],
          },
          { 
            :field => 'AdNetworkType2',
            :operator => 'IN',
            :values => ["CONTENT"],
          }

Is there something I can add to the report definition or the api object to 
fetch "Remarketing" data?

Thanks,
Joel Turnbull

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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

Reply via email to