audioUnmute

View as Markdown

audioUnmute

  • audioUnmute(params): Promise<void>

Unmutes the microphone of a given member if it had been previously muted.

Parameters

NameTypeDescription
paramsObject-
params.memberIdstringId of the member to unmute.

Returns

Promise<void>

Example

1const id = "de550c0c-3fac-4efd-b06f-b5b8614b8966"; // you can get this from getMembers()
2await roomSession.audioUnmute({ memberId: id });