> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# audioMute

> audioMute method for the RoomSessionDevice class.

### audioMute

▸ **audioMute**(): `Promise<void>`

Puts the microphone on mute. The other participants will not hear audio from the muted device anymore.

#### Returns

`Promise<void>`

#### Permissions

* `room.self.audio_mute`

You need to specify the permissions when [creating the Video Room Token](/docs/apis/rest/video/room-tokens/create-room-token) on the server side.

#### Example

```javascript
await roomdevice.audioMute();
```