When downloading a report from adwords using the API I get different results from when I run the same report manually in the adwords UI.
I'm then using
'reportType': 'KEYWORDS_PERFORMANCE_REPORT'
I choose the fields I need.
The only "Predicate" is
{'field': 'CampaignId', 'operator': 'IN', 'values': [some list of campaign IDs]}
And finally I'm using
report_downloader.DownloadReport(
report, file_object, skip_report_header=True,
skip_column_header=False, skip_report_summary=True, include_zero_impressions=True
)
When I look at this report there are some keywords that appear in the UI report & missing in the API report.
Please advise.
Thanks.