Hi @Skip Hofmann , you can use the MS Graph to force password reset.
To force reset the password on next login, update the account password profile using MS Graph Update user operation. The following example updates the password profile forceChangePasswordNextSignIn attribute to true
, which forces the user to reset the password on next login.
PATCH https://graph.microsoft.com/v1.0/users/<user-object-ID>
Content-type: application/json
{
"passwordProfile": {
"forceChangePasswordNextSignIn": true
}
Once the account password profile has been set, you must also configure force password reset flow, which is described here.
If this answer helped you, please mark it as "Verified" so other users may reference it. Please let me know if you have any questions.
Thank you,
James