Url Performance Report does not return placements that had no clicks

48 views
Skip to first unread message

sergiy....@gmail.com

unread,
Oct 5, 2018, 12:02:52 PM10/5/18
to AdWords API and Google Ads API Forum
Hello, Url Performance Report does not return placements URLs that had no clicks, only had impressions. Is there a way to get those? 

function main() {
  
var spreadsheet = SpreadsheetApp.openByUrl(spreadsheetUrl);
var tabName = 'Placements Report';

var QUERIES = [{'query' : 'SELECT Url, CampaignName, Impressions, Clicks ' +
                'FROM   URL_PERFORMANCE_REPORT ' +
                'DURING ' + 'YESTERDAY',
                'reportVersion' : 'v201806'
               }];

  for(var i in QUERIES) {
    var queryObject = QUERIES[i];
    var query = queryObject.query;
    var reportVersion = queryObject.reportVersion;
    var sheet = spreadsheet.getSheetByName(tabName);
    var report = AdWordsApp.report(query, {apiVersion: reportVersion});
    report.exportToSheet(sheet);
  }
}


Luis Xander Talag (AdWords API Team)

unread,
Oct 5, 2018, 2:43:34 PM10/5/18
to AdWords API and Google Ads API Forum
Hi,

The Url Performance Report does not support zero impressions. I'm afraid there's no way to retrieved those data with zero impressions using this report type.

Thanks and regards,
Luis
AdWords API Team

sergiy....@gmail.com

unread,
Oct 8, 2018, 7:17:04 PM10/8/18
to AdWords API and Google Ads API Forum

Luis Xander Talag (AdWords API Team)

unread,
Oct 9, 2018, 12:41:38 PM10/9/18
to AdWords API and Google Ads API Forum
Hi,

My apologies for the confusion. However, before proceeding with the investigation on your issue, could you confirm if you are using the AdWords Scripts when generating the Url Performance Report? Upon checking on your code, it seems like you are using the AdWords Scripts. If so, I would suggest you to post your concern in the AdWords Scripts Forum instead as they are better equipped to assist you with this issue.

Regards,
Luis
AdWords API Team
Reply all
Reply to author
Forward
0 new messages