Reputation: 1195
I want to get the list of google analytics integrated applications with my gmail account. whether google providing any API for getting the list of applications and its view id? is there any way to do it?
Upvotes: 1
Views: 87
Reputation: 5168
Your Google account (gmail account) can be associated with many Google Analytics Accounts, Properties and Views.
In order to retrieve the full list of these entities you need to callthe account summaries list method.
/**
* Example #1:
* Requests a list of all account summaries for the authorized user.
*/
try {
AccountSummaries accountSummaries = service.management().
accountSummaries().list().execute();
} catch (IOException e) {
System.out.println("An error occurred: " + e);
}
Upvotes: 1