*** id: cce1edcc-07dd-420f-9cd4-829826dd1cb3 title: audioMute slug: /js/reference/video/room-session/audio-mute description: audioMute method for the RoomSession class. max-toc-depth: 3 ---------------- ### audioMute * **audioMute**(`params?`): `Promise` Puts the microphone on mute. The other participants will not hear audio from the muted participant anymore. You can use this method to mute either yourself or another participant in the room. #### Parameters Object containing the parameters of the method. Id of the member to mute. If omitted, mutes the default device in the local client. #### Returns `Promise` #### Permissions * `room.self.audio_mute`: to mute a local device. * `room.member.audio_mute`: to mute a remote member. You need to specify the permissions when [creating the Video Room Token](/docs/apis/video/room-tokens/create-room-token) on the server side. #### Examples Muting your own microphone: ```javascript await roomSession.audioMute(); ``` Muting the microphone of another participant: ```javascript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.audioMute({ memberId: id }); ```