I’m try to develop a simple integration. A regular user, type=2, non-admin, gets an access token and then calls the end point – https://api.zoom.us/v2/users/theUsersIdValue to get info on the user.
I tried creating an app on the marketplace site that and given scope user:read. That call is documented to require “user:read:admin user:read”. What I do not know about the documentation is does that mean the BOTH user:read:admin and user:read are needed or just one or the other.
Further, when I try the call, I get the error–
{
“code”: 4700,
“message”: “Invalid access token, does not contain scopes: [user:write:admin, user:read:admin, zms:user:write, zms:user:read]”
}
FYI, I tried creating a “user-managed” app as opposed to an “account-level” app when creating the app in the marketplace and assigning scope.
Any know if there is a way for a regular user to get their own user info and if so, what scopes must be granted and what the request should be like?