Accounts

  • The code snippet demonstrates how to retrieve details for the current account using AdsApp.currentAccount().

  • It logs the customer ID, currency code, and timezone of the current account.

  • The code also fetches and logs the click and impression statistics for the last 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;
}