403:Authenticated user has not permitted access to the targeted resource

Description
It is currently under review, but it seems that an error ‘Authenticated user has not permitted access to the targeted resource.’ appears during the review. Please tell me how to resolve it.

Error?
code:403
message:Authenticated user has not permitted access to the targeted resource.

How To Reproduce

■REQUEST
・URL
https://api.zoom.us/v2/users
・HEADER
Authorization: Bearer eyJzdiI6IjAwMDAwMSIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6ImZjY2EzZTg1LTJlNDctNGRmZi04MWM1LTQwMzY1ZTJkOWM5ZCJ9.eyJ2ZXIiOjksImF1aWQiOiIzOWNmNTIxYWE4NTgyMjYwOWQ5YjVhODJhYzc4OWYxMyIsImNvZGUiOiJzWnA5ZnN4MGw0bHE2R2hVN0stUzlpNDZ6bGlkX2IwZFEiLCJpc3MiOiJ6bTpjaWQ6Q19Ed05oa0dSa1M5dDhqNmJ2WUpBIiwiZ25vIjowLCJ0eXBlIjowLCJ0aWQiOjAsImF1ZCI6Imh0dHBzOi8vb2F1dGguem9vbS51cyIsInVpZCI6IlY0emMxVm9mVHFHVmxJQnNUaFo3ZlEiLCJuYmYiOjE2OTAzMjY5NDgsImV4cCI6MTY5MDMzMDU0OCwiaWF0IjoxNjkwMzI2OTQ4LCJhaWQiOiJBOWhqUzIwUVRyR2taZ3UyX1RPY0J3In0.zFkC-ZydkjG9utXs8CG7s-9SHF49uyTIcdookxc8iMFDtvcywupqfQ7JrAN9blBMTVLdH31wp10AA3GV8aMS-g

■RESULT
code:403
message:Authenticated user has not permitted access to the targeted resource.

@zoom71 ,

it seems like you are using oauth, and the user has not grant you permission to access to “users” related objects

thank you for your reply

it seems like you are using oauth, and the user has not grant you permission to access to “users” related objects
Where do I configure this?
It would be helpful if you could tell me.

I will describe the outline of the system just in case.

What I want to do is
Users who use the system want to automatically create their own meeting rooms.

「Processing flow」

①’USER-ID’GET

■REQUEST
・URL
https://api.zoom.us/v2/users
・HEADER
Authorization: Bearer

②Create a meeting room

■REQUEST
・URL
https://api.zoom.us/v2/users/{USER-ID}/meetings

・HEADER
Authorization: Bearer

@zoom71

This should be under the scopes of your oauth app. There should be a couple of different scopes for user related data, choose those which you need to access

thank you for your reply

I think I’ll add ‘scope’ and try the review again
thank you very much.