We are using this API to fetch Meeting details from each user in an organization. We use 3-legged OAuth Flow to authentication and access the API through an access token. We are facing following issues,
1. Only the user who granted the access can retrieve the list of his/her Scheduled meetings.
2. Other users are getting below issue from the same token. But if we use a access token of any other user, he / she will be able to fetch details. But we need single access token to access all meetings of each user.
{
"errorCode": "CMN-408",
"message": "In order to call this API endpoint, user needs to have [Meetings] permission"
}
3. We cannot get participants of the meeting.
Is there any solution for this?