Passcode creation for meetings

can we provide our own passcode while creating meeting from zoom api

@akshayshrivastava170,

Yes, it is possible to create your own passcode while creating a meeting from the Zoom API. The password must be at least 6 characters long and at least 1 number. Here is a code snippet you can consider for generating a one-time password.

function generatedOTP(){
const optLength = 6; // Ajust this value for OTP length
let opt = "";

for(let i=0; i < otpLength; i++) {
otp +=Math.floor(Math.random()*9)

}
return otp;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.