Total number of visits of user

We are using Piwik to track visitors. Using the API we show our user managers how often their users have used our knowledge base. They have requested us to show the total amount of visits by user. Piwik shows a maximum of 100 visits for a user. A bunch of users exceed this amount by a lot, and there is no way to differantiate them anymore in visits.

Is there any way to remove the cap 100 and display their actual amount of visits?

Regards,
Stijn

Hi, you may want to check this out:

filter_limit; defines the number of rows to be returned. Set to -1 to return all rows. By default, only the top 100 rows are returned.

https://developer.piwik.org/api-reference/reporting-api

Hi Lucas,

Thank you for your reply. I have tried this, but it stills limits at 100, it seems to ignore the setting for this query.

I am retrieving data in bulk requests, but to simplify it and to test your suggestion, I changed it to a single query.
https://[server]/index.php?module=API&token_auth=[token]&format=JSON&method=Live.getVisitorProfile&idSite=1&segment=userId==[userId]&filter_limit=-1

What am I doing wrong? We are using Piwik: 3.0.4.

Regards,
Stijn

Anyone knows what I am doing wrong here?

https://[server]/index.php?module=API&token_auth=[token]&format=JSON&method=Live.getVisitorProfile&idSite=1&segment=userId==[userId]&filter_limit=-1

The answer to this is to change this config parameter live_visitor_profile_max_visits_to_aggregate. the default value is 100, which is applied on both the API & the UI.