Hi Sumit, You just need to add a predicate<https://developers.google.com/adwords/api/docs/reference/latest/ReportDefinitionService.Predicate>to the selector to filter your report. I'm not too familiar with Python, but I thing the following should work:
report_downloader = client.GetReportDownloader( 'https://adwords.google.com', 'v201109') # Create report definition. report = { 'reportName': 'DESTINATION_URL_REPORT', 'dateRangeType':'YESTERDAY', 'reportType': 'DESTINATION_URL_REPORT', 'downloadFormat': 'CSV', 'selector': { 'fields': ['AdGroupId','AdGroupStatus','EffectiveDestinationUrl','Clicks','Impressions'], 'predicates': [{ 'field': 'AdGroupStatus', 'operator': 'EQUALS', 'values': ['PAUSED'] }] }, # Enable to get rows with zero impressions. 'includeZeroImpressions': 'false', } If you're feeling adventurous, you could also try out the new AWQL<https://developers.google.com/adwords/api/docs/guides/awql>in the latest version of the API (v201206); here's an example<http://code.google.com/p/google-api-ads-ruby/source/browse/adwords_api/examples/v201206/reporting/download_criteria_report_with_awql.rb?spec=svn788ed3a1df1a04de0cad9481bdc953559135eaaf&r=788ed3a1df1a04de0cad9481bdc953559135eaaf>that shows how you could go about it. Regards, Ewan -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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