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

Category

Call

Callback Parameters

ParameterTypeDescription
sessionCallSessionThe current call session with muted set to false

Example

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

More Information

  • muted — fires when the microphone is muted
  • unmute — the method that unmutes the microphone
  • CallSession — session type definition