Accounts
Stay organized with collections
Save and categorize content based on your preferences.
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
;
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License
, and code samples are licensed under the Apache 2.0 License
. For details, see the Google Developers Site Policies
. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-20 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[[["\u003cp\u003eThis script retrieves essential details of your Google Ads account, such as customer ID, currency code, and timezone.\u003c/p\u003e\n"],["\u003cp\u003eIt also fetches and displays performance statistics, specifically the total clicks and impressions for the previous month.\u003c/p\u003e\n"]]],[],null,["# Accounts\n\nGet details on the current account\n----------------------------------\n\n```gdscript\nfunction getCurrentAccountDetails() {\n const currentAccount = AdsApp.currentAccount();\n console.log(`Customer ID: ${currentAccount.getCustomerId()}`);\n console.log(`Currency Code: ${currentAccount.getCurrencyCode()}`);\n console.log(`Timezone: ${currentAccount.getTimeZone()}`);\n const stats = currentAccount.getStatsFor('LAST_MONTH');\n console.log(`${stats.getClicks()} clicks last month`);\n console.log(`${stats.getImpressions()} impressions last month`);\n return stats;\n}\n```"]]