Gateway User Review

Hello,

I would like to implement a user access review on our ignition gateways. Is there any way to display, extract or interface the full list of users with their roles?

Thank you

Regards

Julien Rouillard

You could do this just copying the user's table from the gateway webpage and pasting into Excel. Otherwise you could use scripting to do this as well
https://docs.inductiveautomation.com/display/DOC81/system.user.getUsers

users = system.user.getUsers()
for user in users:
   un = user.get('username')
   roles = user.getRoles()
   print un, roles
1 Like

Thank you for the suggestion, we have roughly 20 gateways so I would like to avoid copy/paste the user list from the gateway.

I will have a look at the script for users.

Julien