> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cognigy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# muted

Emitted when the local microphone is muted during a call.

## Category

Call

## Callback Parameters

| Parameter | Type                                                                | Description                                          |
| --------- | ------------------------------------------------------------------- | ---------------------------------------------------- |
| `session` | [`CallSession`](/click-to-call/sdk/api-reference/types#callsession) | The current call session with `muted` set to `true`. |

## Example

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

## More Information

* [unmuted](/click-to-call/sdk/event-reference/unmuted)
* [mute](/click-to-call/sdk/api-reference/mute)
* [CallSession](/click-to-call/sdk/api-reference/types#callsession)
