IUserInfo missing email

How to get associated email id for a user ? The IUserInfo interface exposes name, ID and other parameters but email id is not a part of it.

SDK Version v4.6.21666.0428

Thanks

Hi @balhara.vinay,

Thanks for using Zoom SDK. The email info is not provided. If you would like to get the user email, you may leverage the Zoom API:https://marketplace.zoom.us/docs/api-reference/zoom-api/users/user

Thanks!

Thanks @carson.zoom. I tried using that API on the browser itself but I was receiving a response ‘user doesn’t exist’ although the user id supplied is the one that I got by IUserInfo::GetUserID in my application. I suspect this might be because of wrong auth token.
If I try to create an auth token with client key and secret of my SDK app, the zoom portal says invalid key. JWT app’s key and secret creates a token but it seems JWT apps don’t have access to said user API.
How am I supposed to get this user info using API or how can I create the auth token using key and secret of my SDK app if wrong auth is the underlying problem?

Thanks

Hi @balhara.vinay,

Thanks for the reply. Since Zoom API and Zoom SDKs are different products, so you will need separated credentials to make requests to Zoom API:

  • Zoom API: Use API key & API secret
  • Zoom SDK: Use SDK key & SDK secret

You may refer to the instruction here to authenticate and make a request to Zoom API:https://marketplace.zoom.us/docs/api-reference/using-zoom-apis

Thanks!