By default, Google Analytics disables eCommerce Tracking.

Is it possible to check, via the Google Analytics Data Export API, whether or not e-Commerce Tracking is enabled in the account in question?

link|improve this question

The question was poorly written, but its a totally valid question. +1 for re-opening. – yahelc Jun 8 '11 at 13:19
yes it's a programming question. Moreother I use C# to connect to the API. But I'd prefer a generic answer. – Dragouf Jun 8 '11 at 15:03
feedback

2 Answers

up vote 1 down vote accepted

As far as I can tell, there is no way to detect solely if it is turned on.

You can checkout the XML responses that the Google Analytics APIs provide: http://ga-api-http-samples.googlecode.com/svn/trunk/src/ ; it does not appear that any of them expose the actual setting.

The one way that I've detected it in one of my apps is to simply open up the date range as far back as possible and check the count transactions (Metric: ga:transactions, no Dimension necessary). If that's greater than 0, eCommerce Transactions are enabled. However, if transactions are equal to 0, it could mean that eCommerce is enabled but not in active use.

Fun fact: You can actually use eCommerce Tracking without enabling it; Google Analytics will collect and preserve the data; once you enable it, all of your priorly sent eCommerce data will be there. Bizarrely, it seems that the option to enable or disable eCommerce Tracking is really just a UI setting, rather than a real option.

link|improve this answer
I checked too the documentation and didn't found anything too. – Dragouf Jun 9 '11 at 8:11
In the end I did what you tell me. I just try to make a simple request with ga:transactions as metrics and it solve my problem. Thanks yahelc. – Dragouf Jun 9 '11 at 8:13
feedback

It would had more chance to be in the Google Analytics Managment API, but I can't see it either http://code.google.com/apis/analytics/docs/mgmt/mgmtFeedReference.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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