How to restrict new user to join the video call which was already in progress

I have certain requirement which only one host can communicate with on user at a time .

basically i want to restrict the number participants to only 1 .

Call should be 1-1 , no other new user can join that call it is already in progress

Please help ,Thanks .

Hi dhiraj,

Thanks for using Zoom SDK. Which platform are you referring to? You can lock the meeting once the first user has successfully joined the meeting. For example, in Android, we have: https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/InMeetingService.html#lockMeeting-boolean-

Hope this helps. Thanks!

i am developing for iOS

Hi dhiraj,

Thanks for the reply. For the lockMeeting interface in iOS, you can find it here: https://zoom.github.io/zoom-sdk-ios/category_mobile_r_t_c_meeting_service_07_in_meeting_08.html#ac0e898390542b6ae03d308d0cf07ef39

You can also find refer to the implementation in our demo app:https://github.com/zoom/zoom-sdk-ios/blob/f3a734324db65a99b9b578b2b25f0d3b2a2ba10e/MobileRTCSample/MobileRTCSample/SDKPresenters/how_to_use_inmeeting_function/how_to_use_customized_inmeeting_ui/how_to_use_inmeeting_actions/SDKActionPresenter.m#L41

Thanks!