I'm trying to get a report for custom dates with the following query:
report_query = (adwords.ReportQueryBuilder()
.Select(
'CampaignName',
'AdGroupName',
'Url',
'Impressions',
'Clicks',
'Cost'
)
.From('URL_PERFORMANCE_REPORT')
.Where('Status').In('ENABLED', 'PAUSED')
.During('20180801','20180802')
.Build())
I can't figure out how do i set a custom date, tried all possible variations from what i could find online.
What am i doing wrong?
Thanks!