Hi,
I am currently trying to create Online Meetings through the Microsoft Graph API.
Currently, I have created an App, and have given it scope permissions to give me a list of users, and create Online Meetings.
Scope Permissions: 
At the moment, I am using an AD Account to Grant access to my App, and GET a list of users within the org.
When i use MY Microsoft Account ID, i am able to successfully create a meeting, and invite users through Teams. However, When I replace the userID on the URL:
* https://graph.microsoft.com/v1.0/users/<Microsoft User ID goes here>/onlineMeetings
When I replace the given User ID with a different user, it gives me an error of:
{
"error": {
"code": "BadRequest",
"message": "oid mismatch in token and url (token=TokenErrorCode url=<Microsoft AD Account User>). Current support is only for /me endpoint.",
"innerError": {
"date": "2021-04-02T21:09:35",
"request-id": "96e2d559-095b-4b31-9b9b-b1c7b0198e38",
"client-request-id": "96e2d559-095b-4b31-9b9b-b1c7b0198e38"
}
}
}
I thought the scope permissions I had, was suppose to give access to everyone in the Org. Is there a setting I have wrong in the OAuth flow. Or is there a setting I need turned on?
Thanks