Skip to main content
Adobe Champion
August 1, 2023
Resuelto

Report for all user groups in AEM

  • August 1, 2023
  • 4 respuestas
  • 1828 visualizaciones

Is there a Out of the Box way or ACS Commons utility to get a report of all User groups in AEM?

I saw something in ACS Commons for getting the list of users here - etc/acs-commons/exporters/usergroupstagelist.html, but not for user group.

Este tema ha sido cerrado para respuestas.
Mejor respuesta de Sid_Gour

Hi @p_v_nair ,

I doubt whether we have exclusive 'User Group exporter' from acs-commons. But I think you can use the users exporter with custom filters to include properties related to user groups, such as group membership and group-related properties.

You can use below CURL command to get user groups, 

curl -u admin:admin http://localhost:4502/home/groups.tidy.-1.json

The response will contain information about all user groups, including their properties and members.

 

Thanks,

4 respuestas

EstebanBustamante
Adobe Champion and Community Advisor
Adobe Champion and Community Advisor
August 1, 2023
Esteban Bustamante
Adobe Champion
August 1, 2023

@estebanbustamante  If you saw my initial post, I already mentioned this link in there. I am looking for usergroup report and not users list.

EstebanBustamante
Adobe Champion and Community Advisor
Adobe Champion and Community Advisor
August 1, 2023

Sorry I didn't see you already posted the link, but I meant that you get a list of groups in that ACS Commons UI, so you could just inspect the network and see how that is being retrieved. 

Esteban Bustamante
Sid_Gour
Sid_GourRespuesta
Level 3
August 1, 2023

Hi @p_v_nair ,

I doubt whether we have exclusive 'User Group exporter' from acs-commons. But I think you can use the users exporter with custom filters to include properties related to user groups, such as group membership and group-related properties.

You can use below CURL command to get user groups, 

curl -u admin:admin http://localhost:4502/home/groups.tidy.-1.json

The response will contain information about all user groups, including their properties and members.

 

Thanks,