Forum Discussion
Adamneedshelpwithpowershell
Sep 08, 2025Copper Contributor
Problem restoring deleted user with mggraph
Hello, I have done a few 365 migration and almost everytime there are some user data that has been missed in the migration. Earlier I solved this by restoring the 365 user in the source tenant t...
PedroVervaeke
Sep 20, 2025Copper Contributor
Hi Adam!
I had the same issue and was able to resolve it using the Graph Explorer instead of using PowerShell.
Graph Explorer link: https://developer.microsoft.com/en-us/graph/graph-explorer
Make sure that you sign-in with your admin account.
https://learn.microsoft.com/en-us/graph/api/directory-deleteditems-restore?view=graph-rest-1.0&tabs=http
I used the url below, the object ID can be found on the user in Entra beneath the Deleted Users.
POST https://graph.microsoft.com/v1.0/directory/deleteditems/**OBJECTID**/restore
In the "text box"
{ "autoReconcileProxyConflict": true }
Good luck! :)