Hi everyone,
I'm currently trying to retrieve the TeamsID using Microsoft Graph API. However ,I keep encountering an error and I'm not sure how to resolve it. Here is the request I'm making and the error message I'm receiving:
GET https://graph.microsoft.com/v1.0/me/teams/{TEAMSID}
Error message :
{
"error": {
"code": "Request_ResourceNotFound",
"message": "Resource 'teams' does not exist or one of its queried reference-property objects are not present.",
"innerError": {
"date": "2024-05-27T12:35:59",
"request-id": "21ad602c-9b6a-4506-a0e2-9b65fe6427f9",
"client-request-id": "03a92fc5-ea36-f8f5-29a2-08246388ee7b"
}
}
}
I've double-checked the permissions(Group.Read.All,Team.ReadBasic.All) granted in Graph Explorer. Despite this, the error persists.
Could someone please help me understand what might be causing this issue and how I can successfully retrieve the teams ID? Any insights or suggestions would be greatly appreciated.
Thanks in advance!