Mute a Call Member

Overview

This guide covers muting and unmuting members to a conversation.

Before you begin, make sure you added the SDK to your app and you are able to make or receive calls.

Mute

Mute a member to disables others from hearing the muted member. You can mute your own member or others.

//Mute Member
member.mute(true);

//Mute my Member
conversation.me.mute(true);

Unmute

Unmute a member to allow others to hear a previously muted member.

member.mute(false);

//Unmute my Member
conversation.me.mute(false);

Reference