Is there a way to get list of users which are joined meeting by zoom SDK

I have implemented Zoom SDK for android but I am not able to get the list of users which are in the zoom current ongoing meeting…
Is there a way to get user list of current on going meeting?

Looking forward to your response.

Thank you,

Hi @sagesurfertest18,

The SDK does not provide information about whether other users joined through an SDK app, but SDK apps will show up in the Active Apps Notifier.

You can get a general list of current meeting users through getInMeetingUserList, but since this will update whenever users join/leave the meeting it is recommended to use the onMeetingUserJoin and onMeetingUserLeave callbacks to stay in sync. Once you have the userId of a meeting participant, you can get additional information about that user by passing it into getUserInfoById.

Thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.