*** id: df66fb6e-87ce-4f71-a1d4-d495898c8a9c title: setInputVolume slug: /node/reference/video/room-session/set-input-volume description: setInputVolume method for the RoomSession class. max-toc-depth: 3 ---------------- ### setInputVolume * **setInputVolume**(`params`): `Promise` Sets the input volume for a given member (e.g., the microphone input level). #### Parameters | Name | Type | Description | | :---------------- | :------- | :---------------------------------------------------------------- | | `params` | `Object` | - | | `params.memberId` | `string` | Id of the member to affect. | | `params.volume` | `number` | Desired volume. Values range from -50 to 50, with a default of 0. | #### Returns `Promise` #### Example ```typescript const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers() await roomSession.setInputVolume({ memberId: id, volume: -10 }); ```