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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.