
hey,I'm running adwords script in python, using production account with approved token.
I'm trying to fetch report in my terminal.
I used report for "FINAL_URL_REPORT"
I changed in my script, below my script I used to get response.
report = {
'reportName': 'Last 7 days FINAL_URL_REPORT',
'dateRangeType': 'TODAY',
'reportType': 'FINAL_URL_REPORT',
'downloadFormat': 'CSV',
'selector': {
'fields': ['CampaignId', 'CampaignName', 'CampaignStatus',
'ClickType', 'ConversionRate', 'Conversions', 'AverageCpc']
}
}
report_downloader.DownloadReport(
report, sys.stdout, skip_report_header=False, skip_column_header=False,
skip_report_summary=False, include_zero_impressions=False)
I'm using my client ClientCustomerId who have 1 campaign enabled and it contains large numbers of group.
below is screenshot for it.

ISSUE: Whenever I'm trying to call api using my terminal, it return only headers, (It should return with data)
Below I paste my response.
Is anything I missed? why I can't see any data?