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