Accounts

  • This script retrieves essential details of your Google Ads account, such as customer ID, currency code, and timezone.

  • It also fetches and displays performance statistics, specifically the total clicks and impressions for the previous month.

Get details on the current account

function getCurrentAccountDetails() {
  const currentAccount = AdsApp.currentAccount();
  console.log(`Customer ID: ${currentAccount.getCustomerId()}`);
  console.log(`Currency Code: ${currentAccount.getCurrencyCode()}`);
  console.log(`Timezone: ${currentAccount.getTimeZone()}`);
  const stats = currentAccount.getStatsFor('LAST_MONTH');
  console.log(`${stats.getClicks()} clicks last month`);
  console.log(`${stats.getImpressions()} impressions last month`);
  return stats;
}