I'm using confluence soap remote API. Is there any way of getting all the members of a given group through remote API?
Then te only option will be to write your own soap service, and still then, your requests will need some time. -> https://developer.atlassian.com/display/CONFDEV/RPC+ModuleAnd you may need to implement something to have direct access to the database, to reduce the amount of queries needed and be more performant.
Hi Davin,
Thanks for the answer. But in my case it's nearly impossible. I have 30000+ active users.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, for 30000+ people that would probably take a very long time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, you could user use getActiveUsers then loop through that and for each user use getUserGroups. Then build it out based on that ... not very effecient, but I think it should be possible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No :(.
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.