Find all Users in all Mendix Apps

0
Hello all, I am currently working on writing an app that retrieves a list of all the users that have logged on to one of our many Mendix apps at my company. I know how to retrieve a list of all users that have logged into a specific app. We use OpenIDConnect to log in to our apps and I was curious if there is a way to use that to gather the complete list. Thanks.
asked
1 answers
2

You can either send all logins to that central app via REST, or let every app publish that data via OData and let de central app consume OData to collect it.

 

3rd option is to get that data from the OIDC server.

answered