Hi, 

I am trying to do the same thing. Here is my script: 
import sys
from googleads import adwords


def main(client):
  report_downloader = client.GetReportDownloader(version='v201809')
  
  report = {
      'reportName': 'Last 30 days CRITERIA_PERFORMANCE_REPORT',
      'dateRangeType': 'LAST_30_DAYS',
      'reportType': 'CRITERIA_PERFORMANCE_REPORT',
      'downloadFormat': 'CSV',
      'selector': {
          'fields': ['CampaignId', 
'AdGroupId','CampaignName','AdGroupId','CriteriaType',
                      'Criteria', 'Clicks', 'Cost','VideoQuartile100Rate',
                     'VideoQuartile25Rate', 'VideoQuartile50Rate', 
'VideoQuartile75Rate', 
'VideoViewRate','FinalUrls','Status','Impressions','Date']
      }
  }
  
  with open('CRITERIA_PERFORMANCE_REPORT.csv', 'wb') as handler:
    report_downloader.DownloadReport(
        report, handler, skip_report_header=False, skip_column_header=False,
        skip_report_summary=False)


However, in my criteria Type i only get age and household income and final 
url is blank even when status is enabled. 

Can you tell me why and how can i have the landing page in criteria 
performance report along with gender as well?

On Monday, November 27, 2017 at 9:19:29 AM UTC+5:30, Vincent Racaza 
(AdWords API Team) wrote:
>
> Hi,
>
> For the Criteria Performance Report 
> <https://developers.google.com/adwords/api/docs/appendix/reports/criteria-performance-report>,
>  
> if the Status 
> <https://developers.google.com/adwords/api/docs/appendix/reports/criteria-performance-report#status>
>  of 
> a criteria is already removed, then its FinalUrls 
> <https://developers.google.com/adwords/api/docs/appendix/reports/criteria-performance-report#finalurls>
>  will 
> be empty in the report. Also, take note that this report type is a single 
> attribution 
> <https://developers.google.com/adwords/api/docs/guides/reporting#single_attribution>
>  report, 
> meaning, only one of the triggering criteria (keyword, age, placement, 
> etc.) is recorded on which AdWords deems most relevant.
>
> For your issue, can you check if the triggering criteria is not REMOVED? 
> If it is not removed, and still, the FinalUrls attribute is empty on your 
> end, then kindly provide your report definition 
> <https://developers.google.com/adwords/api/docs/guides/reporting#create_a_report_definition>
>  (include 
> the actual date range since in your code, this is not visible) with your 
> clientCustomerId so I can further check. Please use the *Reply privately 
> to author* option.
>
> Thanks,
> Vincent
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@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/014e60fa-fc40-4c06-a1d4-adb3f22f50fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • ... driptibanga93
    • ... 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API and Google Ads API Forum

Reply via email to