I'm getting Google analytics using Google API. In order to get analytics I need to provide profile Id which looks like "ga:12345678".

The problem is that user can have many profiles. Is it possible to figure out profile Id from say Google tracking code (e.g. if I know tracking ID which looks like "UA-1234567-1")? Are they related to each other at all?

Thanks

link|improve this question

feedback

2 Answers

You can programatically get the profiles that exist for a given WebPropertyId (UA code) using the management API (link below).

The HTTP call you make will look like this:

https://www.google.com/analytics/feeds/datasources/ga/accounts/[accountID]/webproperties/[webPropertyID]/profiles

Where accountID and webPropertyID will either be set to the specific values you are interested in or ~all to bring back everything the current user has access to.

If by convention you don't create multiple profiles under a Web Property then only the default profile will be returned for a given WebPropertyId, which means you will be getting a one-to-one mapping from WebPropertyId to profile id. This will allow you to look up a profile id from a WebPropertyId.

See here on the management API docs for more info: http://code.google.com/apis/analytics/docs/mgmt/mgmtFeedReference.html

link|improve this answer
feedback

What you're trying to obtain is called the tableId. The ID used in tracking code is called the webPropertyId. It's possible to create multiple profiles, with unique tableId's, for each web property.

You can get the tableId from the "Analytics Settings > Profile Settings" screen within GA (press 'edit' on one of the profiles). Then take the "Profile ID" field and append it to "ga:". You can also download the account details, including profile data, using the Account Feed: http://code.google.com/intl/en/apis/analytics/docs/gdata/gdataReferenceAccountFeed.html

link|improve this answer
Thanks for reply, sorry if my question is not clear, We are building a service which allows users to access their GA via our website. The fact is that users can have many analytics profiles, but we don't want to let them access all their profiles via our system, just one in particular and of course we don't want them to enter profile id manually. So I'm asking is it possible to get profile Id from tracking Id which we have access to? I'm getting GA using Gdata and I can get list of their profiles, but don't know which to get data for. Thanks – Burjua Mar 21 '11 at 17:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.