Reputation: 11
I working with azure ad b2c, and now i want to change user'email. Is it possible to allow users to edit their profile email in edit profile ?? Now my mobile app can change user'name even so reset password.
Upvotes: 0
Views: 108
Reputation: 4870
You can use Update user method of Microsoft Graph API to achieve this.
Http request:
PATCH https://graph.microsoft.com/v1.0/me
Content-type: application/json
{
"mail": "Email_Address"
}
Upvotes: 0