The System.User entity already has a Password attribute of type HashString. This attribute in combination with the attribute Name is used for authentication.
The entity Administration.Account in combination with the pages Account_Overview, Account_New and Account_Edit supports out of the box creation and managing accounts. Including changing passwords.
Microflow "ManageMyAccount" supports changing the password by the loggedin user itself.
Your Teammember entity should have a 1-1 association to the entity Administration.Account. When adding a TeamMember, the account can be created in a microflow
Or when you want to hack the app for now; inherit Teammember from Administration.Account and use the logic from the administration module out of the box.
If you need to have more details and support: Just take a proper training :-)
The platform will hash it for you. You only have to give a String as input.
Hello Wei Jie Sow,
Change the Password1 Type from Hashed string to String then its works.
Check the Example Microflow in our application.
Microflow Name :ChangePassword