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