I have successfully pulled video performance reports but in comparing with the google adwords web UI it appears that some fields are not populating with data. I get data for 100,75,50,25 quartile fields but views, view rate, conversions, cost/conv, etc are showing '0' as the value where the web UI will show values I would expect. I checked a specific day and the clicks value was an exact match. Below is the report definition I am using (python with pythonmarketo library)
'video': {
'reportName': 'video_performance_rpt',
'dateRangeType': 'CUSTOM_DATE',
'reportType': 'VIDEO_PERFORMANCE_REPORT',
'downloadFormat': 'TSV',
'selector': {
'dateRange': {
'min': 'yyyymmdd',
'max': 'yyyymmdd'
},
#'dateRange' : {'min': '20150101', 'max': '20151001'},
'fields': [
'Date', 'CampaignId', 'AdGroupId', 'AverageCpv', 'AdNetworkType2', 'Device',
'EngagementRate', 'Engagements', 'Clicks', 'ClickType',
'CostPerConversion', 'ConversionRate', 'Conversions', 'ConversionValue', 'CreativeId', 'VideoDuration',
'VideoQuartile100Rate', 'VideoQuartile75Rate','VideoQuartile50Rate','VideoQuartile25Rate',
'VideoTitle', 'VideoViewRate', 'VideoViews'
]
},
'includeZeroImpressions': 'false'
}
Thanks for your help!