@joshua Thank you for updating the docs. I can confirm simply increasing the numberOfResults indeed returns the rest of the users!
M
Best posts made by mohyddin.tash
- 
RE: FusionAuth Get all users not returning all usersposted in General Discussion
Latest posts made by mohyddin.tash
- 
RE: FusionAuth Get all users not returning all usersposted in General Discussion@joshua Thank you for updating the docs. I can confirm simply increasing the numberOfResultsindeed returns the rest of the users!
- 
FusionAuth Get all users not returning all usersposted in General DiscussionI am using the query below to get all users. In the fusion auth admin dashboard there are 29 users for that application_id however only 25 users come back. Note: in the response also it says "total: 29" but only 25 users are in the response. { "bool" : { "must" : [ { "nested" : { "path" : "registrations", "query" : { "bool" : { "must" : [ { "match" : { "registrations.applicationId" : "<my-app-id>" } } ] } } } } ] } }I can't really tell what is going on. Only thing I notice is that in the admin dashboard the paging shows 25 users per page, but I don't think this has to do with the problem?