I have a global administrator account who consented to have access to microsoft teams. Then using graph api https://graph.microsoft.com/beta/groups?$filter=resourceProvisioningOptions/Any(x:x eq 'Team'). It returned the list of groups for this tenant. However, when I called https://graph.microsoft.com/beta/teams/{id}. Some of the ids worked but some of them returned "error": { "code": "NotFound", "message": "Failed to execute Skype backend request GetThreadS2SRequest.", "innerError": { "date": "2021-05-17T06:04:19", "request-id": "02f0a689-eca6-4b0d-9f0f-9d3e876d8f08", "client-request-id": "02f0a689-eca6-4b0d-9f0f-9d3e876d8f08" } }
In addition, I used https://graph.microsoft.com/v1.0/groups/{id} and it returned the group information correctly.
So why graph api returned NotFound while it is a valid team group?
Thanks, Karen