How to delete groups on AEM Cloud Publisher
Hi Team,
I want to delete some user groups on publisher, how can I delete the groups on publisher directly? Is there any curl or process to handle the users or groups on publisher?
Thanks,
SD
Hi Team,
I want to delete some user groups on publisher, how can I delete the groups on publisher directly? Is there any curl or process to handle the users or groups on publisher?
Thanks,
SD
You can delete a group by sending a POST request to the group’s node path with the deleteAuthorizable parameter:
curl -u admin:admin -FdeleteAuthorizable= http://<publisher-host>:<port>/home/groups/<first-char>/<groupID>You must know the exact JCR path of the group.
For bulk deletion, you can prepare a list of group paths and use a shell script to iterate and delete each group:
while read groupPath; do
curl -u admin:admin -FdeleteAuthorizable= http://publisher-host:4503$groupPath
done < group-paths.txtEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.