Analytics Getting a list of Analytics accounts

Getting a list of Analytics accounts

A Google account may be associated with multiple Analytics accounts. You can get a list of them as:

AnalyticsAccountsResponse response = analytics.GetAccounts();

foreach (AnalyticsAccount account in response.Items) {
                
    string accountId = account.Id;
    string accountName = account.Name;
                
}