Skip to content

Commit be192ae

Browse files
authored
Merge pull request #231 from ikuleshov/master
docs(samples): add the Google Analytics Admin API apps script sample app
2 parents 7f4c3ef + 526c3d1 commit be192ae

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

advanced/analyticsAdmin.gs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/**
2+
* Copyright 2021 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
// [START apps_script_analyticsadmin]
17+
function listAccounts() {
18+
var accounts = AnalyticsAdmin.Accounts.list();
19+
if (accounts.items && accounts.items.length) {
20+
for (var i = 0; i < accounts.items.length; i++) {
21+
var account = accounts.items[i];
22+
Logger.log('Account: name "%s", displayName "%s".', account.name, account.displayName);
23+
}
24+
} else {
25+
Logger.log('No accounts found.');
26+
}
27+
}
28+
// [END apps_script_analyticsadmin]

0 commit comments

Comments
 (0)