How to check user's Microsoft teams membership

HASSAN BIN NASIR DAR 306 Reputation points
2023-03-14T09:02:44.3266667+00:00

Hi

I want to see this user "abc@test.com" is member of how many Microsoft Teams and what is the name of the teams?

Regards

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,120 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vasil Michev 95,666 Reputation points MVP
    2023-03-14T09:15:01.0533333+00:00

    Go to the Teams admin center > Users > Manage users and click the user in question. You will then find the list of current Teams he's a member of under the Teams tab:

    User's image

    If you want to do it programmatically, you can use the Graph API or PowerShell. For example:

    Get-MgUserJoinedTeam -UserId user@domain.com

    1 person found this answer helpful.