API https://mixpanel.com/api/2.0/events/names/ returns only the event names of last 31 days. Cann't it return the list of all event names that occurred through out the life of the project?
Hey
Thank you for sharing your Idea.
We are constantly iterating on our features, and I've submitted this as a product gap to our Engineering and Product Development team, and updated the status of this idea to 'In Consideration.'
In the meantime, you can use the following script to get these results in JQL.
function main() {
return Events({
from_date: 'YYYY-MM-DD',
to_date: 'YYYY-MM-DD'
})
.groupBy(["name"], mixpanel.reducer.count());
}
Reply
Enter your username or e-mail address. We'll send you an e-mail with instructions to reset your password.