How to delete groups on AEM Cloud Publisher | Community
Skip to main content
Level 3
June 3, 2025
Solved

How to delete groups on AEM Cloud Publisher

  • June 3, 2025
  • 2 replies
  • 477 views

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

Best answer by giuseppebaglio

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

2 replies

giuseppebaglio
giuseppebaglioAccepted solution
Level 10
June 3, 2025

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
AmitVishwakarma
Community Advisor
Community Advisor
June 3, 2025

Hi @sdusane ,