Dear community,
your help would be greatly appreciated,
We need to remove a group (confluence) from hundreds of users' Crowd accounts
what is the way to do the removal in Bulk?
Much thanks.
Hey @[deleted]
I'd suggest using the REST API and something like https://www.postman.com/ that allows you to provide a CSV list of the usernames you want to remove, and then Postman will iterate through each line and make the relevant REST API call for you - https://community.atlassian.com/t5/Answers-Developer-Questions/Removing-user-from-a-group-using-crowd-REST-API/qaq-p/499556 shows the API call is likely
curl -D- -k -u "login:password" -X DELETE "https://myinstance/crowd/rest/usermanagement/latest/user/group/direct?username=usernamefromcsvgoeshere&groupname=confluence"
CCM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.