Skip to main content
Emitted when the local microphone is muted during a call.

Category

Call

Callback Parameters

ParameterTypeDescription
sessionCallSessionThe current call session with muted set to true

Example

client.on('muted', (session) => {
  console.log('Microphone muted. Session ID:', session.id);
});

More Information

  • unmuted — fires when the microphone is unmuted
  • mute — the method that mutes the microphone
  • CallSession — session type definition