*** id: 761244f0-9db3-4462-9c07-5a8eb814a9a5 title: audioUnmute slug: /node/reference/video/room-session/audio-unmute description: audioUnmute method for the RoomSession class. max-toc-depth: 3 ---------------- ### audioUnmute * **audioUnmute**(`params`): `Promise` Unmutes the microphone of a given member if it had been previously muted. #### Parameters | Name | Type | Description | | :---------------- | :------- | :-------------------------- | | `params` | `Object` | - | | `params.memberId` | `string` | Id of the member to unmute. | #### Returns `Promise` #### Example ```typescript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.audioUnmute({ memberId: id }); ```