Listing All user within API Call

Hello everyone!

I wanted to know how to show (or download in csv file) all users and their id IN ONE PAGE.
I have tried : /api/users but the output is limited 50 users.

Thanks a lot

2 Likes

You can try the API call without paging: /api/users/?paging=False

If you have a lot of users, it’s better to write a script that does the request page-by-page.

3 Likes

You can turn off paging with the following API syntax:

/api/users?paging=false
3 Likes

Thanks. It works!

2 Likes