Forum Discussion
Team is missing in Teams admin center
Hi,
So apparently sometimes during Teams provisioning the team itself isn't considered as team as it should, even if the team was successfully created and appear to the end user on Microsoft Teams.
After opening a ticket with Microsoft, the support wasn't able to help me so I decided to research a bit and found the solution. Please note this procedure should be used like a last resort or if the team already have some usage where deleting and creating could be painful. If you created a team and it's blank maybe you should deleted it and try to create again.
This operation should be made using Microsoft Graph since currently isn't possible to achieve the same result with powershell. As you should know Microsoft Graph is the official API from Microsoft so any available methods are officially supported by Microsoft to their customers so we are not doing nothing that isn't supported. But in any case please check more information about this on Learn: Microsoft 365 group behaviors and provisioning options - Microsoft Graph | Microsoft Learn
How to fix the Teams not showing on Microsoft Teams Admin Center:
- Open Microsoft Graph Explorer - https://developer.microsoft.com/en-us/graph/graph-explorer
- Login with a user with enough privileges to change the group settings
- Consent every permissions to the user
- Do a GET call to https://graph.microsoft.com/v1.0/groups and "Run query" so you will know the ID for the group you want to correct
- After getting the ID, change from GET to PATCH and change the URL from the previous to https://graph.microsoft.com/v1.0/groups/{group_id} changing {group_id} to the ID of the group
- On the "Request body" put the following JSON code:
{"resourceProvisioningOptions": ["Team"]} - And click "Run query"
After that you should see your group on the Teams Admin Center and on the groups you will see the Teams icon near to the group showing this is a Teams Team.
If you run a new GET for the groups you will see that it was added this parameter to the team.
Let me know if it worked for you.
Thanks,
Diogo Moura
Thank you. This fixed issue perfectly.