*** id: dafc9fb7-034c-46e2-998c-e79c50f31d6f title: audioMute slug: /node/reference/video/room-session/audio-mute description: audioMute method for the RoomSession class. max-toc-depth: 3 ---------------- ### audioMute * **audioMute**(`params`): `Promise` Puts the microphone of a given member on mute. The other participants will not hear audio from the muted participant anymore. #### Parameters | Name | Type | Description | | :---------------- | :------- | :------------------------ | | `params` | `Object` | - | | `params.memberId` | `string` | Id of the member to mute. | #### Returns `Promise` #### Example ```typescript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.audioMute({ memberId: id }); ```