Expand my Community achievements bar.

How to delete groups on AEM Cloud Publisher

Avatar

Level 4

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

2 Replies

Avatar

Level 9

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.txt

Avatar

Community Advisor

Hi @SDusane ,