I am using Piwik managed goal conversion for my pages. How can I get the history of goal conversions like I get the visits history. Currently, I only can fetch the total conversions against a idSite but I need the complete log as well.

I need to fetch this through API.

Imran

EDIT:

After some RnD it turns that Goals.getConversions is better option if one just want to gets the conversion for the day.

But I learned something new (Live API) from NickT's answer.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Via the Live! Analytics API, you should be able to query the visits with conversions, by using the API Segment parameter &segment=visitConverted==1

This will return all visits with a conversion, then you can grab the conversions from the array for each visit..

link|improve this answer
Thanks NickT, I'll give it a try and get back to you. Hopefully the only action I would need to perform after checking the above link is to mark your answer as accepted ;o) – Saim May 3 '11 at 10:03
I can get the goals but there is a lot other information which makes the response a bit heavier. Is there a way to fetch the required set of fields only? – Saim May 3 '11 at 14:10
1  
No at present there is no way to only keep a subset of the answer, so you'd have to manually filter it out in your code. – NickT May 3 '11 at 22:24
feedback

Your Answer

 
or
required, but never shown

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