Skip to main content
April 18, 2023
Solved

Download users list from groups

  • April 18, 2023
  • 6 replies
  • 0 views

Hi Team,

Can we download the list of users present inside a user group in a specific app on Appian. 

What is the best way to get the list of the users that have access to specific app on Appian.

Best answer by sanchitg0002

You can use a!recordData() for "User" recordType and in filters pass all the users of specific group (which you can get using groupMembers() function) and show that in a read only grid and then use OOTB Export Excel feature.

6 replies

harshitb6843
April 18, 2023

You can alter the user record that is already present to only show the users of a group you are interested in and then use the default "Export record list" option present for all the record lists. 

April 20, 2023

[mention:ef600ff8f5d2497eb2def2126dc89484:e9ed411860ed4f2ba0265705b8793d05] Thanks for the reply.

Can you please elaborate on this.

harshitb6843
April 20, 2023

What do you want me to explain?

You now have a default record in Appian "Users" that can be used to club with other records. You might already know the export to excel feature of record and using that, I am suggesting using export to excel of user record but filtering the record in a way that only the users of a group are shown. 

April 18, 2023
What is the best way to get the list of the users that have access to specific app on Appian.

Every app on Appian has a All users group. You can get all the members of this group using groupMembers() function and if you need export for that too then try what Harshit suggested