*** id: 27f853de-9dd3-497a-b3e1-fd02558c60eb title: audioMute slug: /js/reference/video/room-session-device/audio-mute description: audioMute method for the RoomSessionDevice class. max-toc-depth: 3 ---------------- ### audioMute ▸ **audioMute**(): `Promise` Puts the microphone on mute. The other participants will not hear audio from the muted device anymore. #### Returns `Promise` #### Permissions * `room.self.audio_mute` You need to specify the permissions when [creating the Video Room Token](/docs/apis/video/room-tokens/create-room-token) on the server side. #### Example ```javascript await roomdevice.audioMute(); ```