*** id: ee55dab3-a114-4e83-9951-3fb602d4ddcd title: audioUnmute slug: /js/reference/video/room-session/audio-unmute description: audioUnmute method for the RoomSession class. max-toc-depth: 3 ---------------- ### audioUnmute * **audioUnmute**(`params?`): `Promise` Unmutes the microphone if it had been previously muted. You can use this method to unmute either yourself or another participant in the room. #### Parameters Object containing the parameters of the method. Id of the member to unmute. If omitted, unmutes the default device in the local client. #### Returns `Promise` #### Permissions * `room.self.audio_unmute`: to unmute a local device. * `room.member.audio_unmute`: to unmute 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 Unmuting your own microphone: ```javascript await roomSession.audioUnmute(); ``` Unmuting the microphone of another participant: ```javascript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.audioUnmute({ memberId: id }); ```