iOS : How to get the attendees names or participants names of the meeting

Description

How can I get the attendees names of the meeting, in android I can able to get the attendees names using
ZoomSDK.getInstance().getInMeetingService().getUserInfoById(id).getUserName(), but in iOS I cannot find that option.

Hi @vignesh

You can get the all user info like as below:-

MobileRTCMeetingService *ms = [[MobileRTC sharedRTC] getMeetingService];
MobileRTCMeetingUserInfo *userInfo = [ms userInfoByID:userID];

And you can get array of user ids by using below line of code

[ms getInMeetingUserList]

Thanks,
Yogesh

1 Like

Thanks Yogesh for your reply, I was able to figure it out.

MobileRTC.shared().getMeetingService()?.userInfo(byID: (memberUserIdList![0]))

Thanks,
R.Vignesh.

1 Like

Hey @vignesh,

Awesome I am glad you figured that one out so quickly!

Thank you @arora.yogesh for your help! :slight_smile:

Let us know if you have any other questions.
Michael

Sure @Michael_Condon thanks.

The above method gives the list of the UserIds joined as participants in the meeting. How to get the details of each participant like Name, email, and other details.