How to reset password of user in Azure AD B2C via Graph API?
Clash Royale CLAN TAG #URR8PPP How to reset password of user in Azure AD B2C via Graph API? How to reset the password of the user using Microsoft Graph API? Is there a way to do it? If yes, I am not able to find a way to do it. Please let me know , How this can be achieved? Thanks! 2 Answers 2 You can reset a user's password by PATCHing the user object: PATCH https://graph.windows.net/myorganization/users/{user_id}?api-version=1.6 { "passwordProfile": { "password": "{password}", "forceChangePasswordNextLogin": false }, "passwordPolicies": "DisablePasswordExpiration" } For more information, see Reset a user's password. Can we do this using client sdk (C#) of Microsoft Graph. I think the example that you have shared above is Microsoft AD Graph API – prateek ...