The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi I want to list all active users in confluence, I'm getting the count of active users with a limit of 200 max, Is there any way to increase that limit? Even if I increase the limit in the api the result is same with size=200. Please let me know how can I increase the limit.
https://myIP/confluence/rest/api/group/Confluence_users/member?limit=400
You need use pagination to get all the users due to default max limit is 200. Below REST call gives you first 100 users from Conflunce_users group.
https://hostname.atlassian.net/wiki/rest/api/group/Confluence-users/member?start=1&limit=100
In the next run, change the start position to 101 which will give you next 100 users.
This is correct, but the `start` value should begin a 0, not 1 to get all the values. Starting at 1 will skip the first element.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Saquib Fraz I am afraid '200' is max system limit set for this API. API won't honor any limit greater than 200.
To fetch all users, you need to use `start` query parameter, and do paginated (multiple) request.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Feeling overwhelmed by the demands of work and life? With a 25% increase in the prevalence of anxiety and depression worldwide during the pandemic, for most of us, it’s a resounding yes . 🙋♀️ ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.