Hello,
I am trying to get the targetROAS target value per campaign - using this query:
var report = AdWordsApp.report(
" SELECT CampaignName, CampaignStatus, BiddingStrategyName, BiddingStrategyType, MaximizeConversionValueTargetRoas, ConversionValue, Cost " +
" FROM CAMPAIGN_PERFORMANCE_REPORT " +
" WHERE " +
"CampaignStatus = ENABLED" +
" AND BiddingStrategyType = TARGET_ROAS" +
" DURING LAST_7_DAYS");
But I am getting this response:
Column 'MaximizeConversionValueTargetRoas' is not valid for report type CAMPAIGN_PERFORMANCE_REPORT. Double-check your SELECT clause. (file Code.gs, line 31)
Can anyone help me with this?
I have checked and double checked typo's, and I am also using the latest report (v201806).
Thanks!