{"error":{"code":"OrganizationFromTenantGuidNotFound","message":"The tenant for tenant guid '' does not exist.","innerError":{"requestId":"85c28cda-98w7-4c7a-89dd-0962a200ad81","date":"2020-12-17T06:24:44"}}}
Asked
Active
Viewed 329 times
-2
-
By seeing the above error message it the tenant id you are passing is not the valid one and Please share more details like how you are trying to access the Graph, if any specific graph API request its failing – Raghavendra beldona Dec 21 '20 at 10:30
1 Answers
0
If the Azure AD account doesn't have O365 subscription, the error will be caused. Try to follow the steps in this issue and the document about assigning licenses .
If you call the graph API with /me
endpoint but you get the access token by client credentials flow(the access token is application identity but not user identity), you need to replace /me
with /users/{id | userPrincipalName}
or use authorization code flow to obtain access token.
For more details, you could refer to here.

unknown
- 6,778
- 1
- 5
- 14