Unable to generate meeting link and scopes error

API Endpoint(s) and/or Zoom API Event(s)
https://api.zoom.us/v2/users/me/meetings

Description
I have an OAuth app which is configured with the necessary scopes to work well, however when I use the endpoints to create functions the output tells me that scopes are missing (which is incorrect) and I even get some scopes that do not exist for my application.

Error?
Unable to generate meeting link: {‘code’: 4711, ‘message’: ‘Invalid access token, does not contain scopes:[meeting:write, meeting:write:admin].’}

How To Reproduce
1. Request URL / Headers (without credentials or sensitive info like emails, uuid, etc.) / Body
headers = {
‘Authorization’: f’Bearer {self.access_token}',
‘Content-Type’: ‘application/json’
}
data = {
“topic”: topic,
“type”: 1,
“start_time”: start_time.isoformat(),
}
response = requests.post(‘https://api.zoom.us/v2/users/me/meetings
, headers=headers, json=data)

2. Authentication method or app type
OAuth

3. Any errors
There is only meeting:write:admin in the avaiable scopes and I already have it implemented, I don’t know what to do, I’ve been reading documentation for two whole days and I can’t find some kind of solution.

@victorhugo ,

That’s strange, does the same behavior occur if you test with a tool like Postman? I know when you get an access token via Postman, you can see the available scopes. I’d recommend using postman to get an access token and make a request to see if the same behavior occurs or identify i scopes are missing.