How do I read custom events from the Google Analytics API (e.g. with the help of gapi.class.php)?

If I have three events (myEvent1, myEvent2 and myEvent3) and they all belong to eventCategory myEventCategory, how do I read that data?

I have been searching the API docs but found nothing on retrieving the results of event tracking.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You would set your dimensions to:

ga:eventCategory, ga:eventAction, ga:eventLabel

And then you'd set your filter to:

ga:eventCategory==myEventCategory

link|improve this answer
Exactly what I needed to know. Thanks – brenjt Jan 30 at 23:22
feedback

Your Answer

 
or
required, but never shown

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