Get details on the current account
function getCurrentAccountDetails() { var currentAccount = AdsApp.currentAccount(); Logger.log('Customer ID: ' + currentAccount.getCustomerId() + ', Currency Code: ' + currentAccount.getCurrencyCode() + ', Timezone: ' + currentAccount.getTimeZone()); var stats = currentAccount.getStatsFor('LAST_MONTH'); Logger.log(stats.getClicks() + ' clicks, ' + stats.getImpressions() + ' impressions last month'); }