Bes user subinspectors question

Hi all,

Maybe it’s just me missing it but is there subinspector of <bes user> available to check if the user is disabled or enabled? I can see subinspector for everything but that…

image

Hi @ageorgiev, not exactly what you asked as I don’t see an option via session relevance. Here is a possible option where you can obtain this information via REST API as in this example below:

https://yourserver.com:52311/api/operators?fields=Name,LoginPermission

Here is a snippet from my environment:

1 Like

yes, I would have hoped that it may be possible with a single API call to retrieve data but I may have to do two - my goal was to create a report that contains all users, last login, last password change (read all audit logs and search for password changes, not ideal in itself but best available) and hoping to add whether the account is active or disabled… This at least gives me a way to get the info, so thanks for that!