Some things to check;
Hi Elina,
here are the steps to create a user account via the startup microflow in Mendix:
Create Object
activity to the microflow and select System.User
as the entity to create.System.User
entity as desired, including the Name
, UserRoles
, and any other relevant attributes.Encryption
module to hash the password of the user before setting it in the System.User
entity. You can do this using the Encryption
> HashString
action in a Change Object
activity. Set the input parameter to the plain-text password, and set the output parameter to the Password
attribute of the System.User
entity. This will ensure that the password is stored securely in the database.Commit
activity to the microflow to save the new user to the database.Let me know, if you face any issues,
Hope it helps!!