Share via

Wrong data in teams

Sai krishna 25 Reputation points
2026-02-06T18:45:48.49+00:00

Phone(home) parameter in the teams contact card shows incorrect number for everyone to a user.

when checked from entra, exchange, on prem AD phone(home) paramater is not found.

how to identify the source of this information to fix it.

Exchange | Hybrid management
Exchange | Hybrid management

The administration of a hybrid deployment that connects on-premises Exchange Server with Exchange Online, enabling seamless integration and centralized control.

{count} votes

Answer accepted by question author
  1. Austin-H 8,180 Reputation points Microsoft External Staff Moderator
    2026-02-06T23:53:24.0533333+00:00

    Hi Sai krishna
    Thank you for posting question to Microsoft Q&A Forum.
    According to this issue, you might need to consider checking full user object via Graph (PowerShell) to see if any hidden value properties related to phone.

    Connect-MgGraph -Scopes "User.Read.All"
    
    $upn = "******@domain.com" 
    Get-MgUser -UserId $upn -Property `
      "id,displayName,userPrincipalName,businessPhones,mobilePhone,imAddresses,otherMails,proxyAddresses" |  Select-Object displayName,userPrincipalName,businessPhones,mobilePhone,imAddresses,otherMails
    
    

    If you see anything abnormal, you could remove it with command Update-MgUser
    If you do not see anything abnormal, please check on Outlook on the web as the affected user at the link: https://outlook.office.com/people > Search the user's name > Open contact and check on the linked contact information.
    For further ways to check, please also check on this thread: https://learn.microsoft.com/en-us/answers/questions/5535827/mobile-number-discrepancy-in-teams-delve-and-owa-a (at the step of checking SharePoint Online User Profile (Delve)).

    Please let me know if you have any updates from end after performing these checks.
    As it would relate to personal information, you could also provide a screenshot if possible via private message I just sent to you.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.