Hi all, I really need help here if someone could be so nice, I'm struggling to retrieve the exact time of a click made on my ad thru gclid, I am using this query:
function main() {
const spreadsheet = SpreadsheetApp.create('GCLID Report');
const report = AdsApp.report(`SELECT click_view.gclid, click_view.keyword_info.text, click_view.location_of_presence.city, click_view.location_of_presence.country, metrics.clicks,
customer.id,
ad_group.id,
campaign.id FROM click_view WHERE segments.date = '2023-11-22'`);
report.exportToSheet(spreadsheet.getActiveSheet());
}
Everything works fine, but all the parameters that I looked for inside the query builder help like: segments.hour or clickTime, they don't work, could anyone please help me to get this ?
Thanks so much in advance.