> ## 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.

# unmuted

Emitted when the local microphone is unmuted 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 `false`. |

## Example

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

## More Information

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