Hello,
Is it possible to reset/update User Password Profile through power automate? If it's done through graph API, could you please provide a very small example?
Any help is highly appreciated.
Best regards,
Julien
Solved! Go to Solution.
Hi @Julien2,
Yes, you could achieve this using the graph API, here is the sample:
POST
https://graph.microsoft.com/beta/users/6ea91a8d-e32e-41a1-b7bd-d2d185eed0e0/authentication/passwordMethods/28c10230-6103-485e-b985-444c60001490/resetPassword
Content-type: application/json
{
"newPassword": "Fareast1!"
}
Remember to get your bear token.
Hi @Julien2,
Yes, you could achieve this using the graph API, here is the sample:
POST
https://graph.microsoft.com/beta/users/6ea91a8d-e32e-41a1-b7bd-d2d185eed0e0/authentication/passwordMethods/28c10230-6103-485e-b985-444c60001490/resetPassword
Content-type: application/json
{
"newPassword": "Fareast1!"
}
Remember to get your bear token.