We have Invite button on the participant list, and participants get access to participant code and password. We want to hide the invite button. Please advise.
Thanks,
tommy
(Tommy Gaessler)
August 19, 2020, 3:38am
2
Hey @vidyapreps ,
Please let me know if this post answers your question:
Hey @zoom11 (Giuseppe)!
If you want to DISABLE the Invite function, a parameter disableInvite is a boolean flag you can use while creating the meeting [ZoomMtg.init](https://zoom.github.io/sample-app-web/ZoomMtg.html#init) as documented in the WebSDK Reference …
ZoomMtg.init({
debug: true, //optional
leaveUrl: 'http://www.zoom.us', //required
showMeetingHeader: false, //option
**disableInvite: false, //default is false (enable), parameter is optional**
disableCallOut: false,…
Thanks,
Tommy