Verify email address in account properties

To verify an email address in account properties, you can follow these steps:

Method 1: Using the Azure portal

  1. Sign in to the Azure portal (https://portal.azure.com/).
  2. Navigate to the Azure Active Directory (Azure AD) blade.
  3. Click on "Properties" under the "Overview" section.
  4. Scroll down to the "Contact" section.
  5. Click on the "Edit" button next to "Email".
  6. Enter the verified email address in the "Email" field.
  7. Click "Save" to save the changes.

Method 2: Using PowerShell

  1. Open PowerShell and run the following command to connect to your Azure AD tenant:
    Connect-AzureAD
  2. Run the following command to update the email address:
    Set-AzureADUser -ObjectId <userObjectId> -Email <newEmail>

    Replace <userObjectId> with the actual object ID of the user, and <newEmail> with the verified email address.

Method 3: Using the Azure AD Graph API

  1. Use the Azure AD Graph API to update the email address. You can use a tool like Postman or cURL to send a request to the API.
  2. Send a PATCH request to the following endpoint:
    https://graph.microsoft.com/v1.0/users/<userObjectId>

    Replace <userObjectId> with the actual object ID of the user.

  3. In the request body, include the following JSON payload:
    {
    "email": "<newEmail>"
    }

    Replace <newEmail> with the verified email address.

After updating the email address, you can verify that it has been updated by checking the Azure portal or using the Azure AD Graph API to retrieve the user's properties.

Note: The email address verification process may take some time to complete, and it's possible that the email address may not be immediately updated in all systems.