Single sign on connecting to a current users

0
Here's a rewritten version of your question: I've implemented single sign-on in my Mendix app, but now I'm facing an issue. When users sign in using SSO, I want them to be linked to existing accounts with matching email addresses. For instance, I have a user set up with the email address matthew.mooney@digtechgroup.com. This user has completed their profile and entered all necessary details. Now, when Matthew tries to sign in using SSO, I'd like him to automatically log in to this existing account instead of creating a new one. Can you please help me find a way to achieve this?
asked
1 answers
0

Configure your SSO implementation to trigger a custom microflow after login. To achieve this customize the AfterSignIn microflow. Retrieve the user by email from the database, and if a match is found, connect it to the existing or create a new account. 

answered