VidyoPlatform
  • Getting Started
  • Building custom client web application using Connector SDK
  • Android Integration
  • Resources
  • Use-Cases
    • Closed Captioning
    • Virtual Background - Banuba SDK
    • Calls Recording
    • Automatic Reconnection
    • Call Moderation
      • UnlockRoom API
      • Lock Room API
      • SetRoomPIN API
      • Remove RoomPIN API
      • Request Moderator Role API
      • Remove Moderator Role
      • Soft Mute
        • Soft Mute Audio
        • Soft Mute Video
      • Hard Mute
        • Hard Mute Audio
        • Hard Mute Video
      • Recording
      • Drop Participant
    • Custom noise suppression in web applications
    • Android: Picture-in-picture Mode
    • New Generation Renderer
    • Integrating with Epic
  • Twilio to Vidyo Migration
    • Twilio JavaScript SDK to VidyoClient JavaScript SDK
    • Twilio Android SDK to VidyoClient Android SDK
Powered by GitBook
On this page
  1. Use-Cases
  2. Call Moderation

SetRoomPIN API

The objective is to set room pin to the created room by moderator.

Once the RoomPin is set, all the participants are required to enter the PIN to join the room. API used to implement SetRoomPIN is VidyoConnectorSetRoomPIN .

Note : Only room Owner is able to set/remove room PIN

Interface used here is ISetRoomPIN and the callback triggered is VidyoConnectorOnSetRoomPINResult

public void OnSetRoomPINResult(Connector.ConnectorModerationResult result)

{

if(result == ConnectorModerationResult.ConnectormoderationresultOK)

{

hasRoomPin = false;

}

ModerationWindow.SetIsRoomPIN(hasRoomPin);

}

PreviousLock Room APINextRemove RoomPIN API

Last updated 1 year ago