Lấy chi tiết về tài khoản hiện tại
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; }