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

Remove Moderator Role

The objective to establish the procedure for removing the moderator role.

If the participant wants to give up the Moderator privilege, he can do it using this API request.

API used is VidyoConnectorRemoveModeratorRole and the triggered callback is VidyoConnectorOnRemoveModeratorRoleResult

public void OnRemoveModeratorRoleResult(Connector.ConnectorModerationResult result)

{

if (result == ConnectorModerationResult.ConnectormoderationresultOK)

{

IsRoleNone = true;

IsRoleModerator = false;

}

else

{

IsRoleModerator = true;

IsRoleNone = false;

}

}

PreviousRequest Moderator Role APINextSoft Mute

Last updated 1 year ago