Hello Steven Perazzo,
I understand you're trying to remove an old proxy address that's causing a sync issue, and you're not using Exchange. You can do this directly using Microsoft Graph API through Graph Explorer.
Use the following GET request to fetch the current proxyAddresses
of user:
GET https://graph.microsoft.com/beta/users/userId?$select=id,displayName,proxyAddresses
Now send a PATCH request to the same endpoint (/beta/users/{user-id}
) with a body by excluding the unwanted address:
PATCH https://graph.microsoft.com/beta/users/userId
{
"proxyAddresses": [
"smtp:******@domain.com"
]
}
Once the PATCH is successful, the old proxy address will be removed, and the Entra Connect sync error should be resolved.
To confirm that, run the GET query again where proxyAddresses
field successfully updated as below:
GET https://graph.microsoft.com/beta/users/userId?$select=id,displayName,proxyAddresses
Hope this helps!
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful, which may help members with similar questions.
If you have any other questions or are still experiencing issues, feel free to ask in the "comments" section, and I'd be happy to help.