I'm trying to create a LMS system with Django and I need to be able start and view zoom meetings from the website using zoom api. I found a python library called zoomus
for python to connect to the api but they don't give any documentation. does anyone have an idea how to do this ?
Thank you!
To create Zoom Meetings you can call the Create Meeting API. You can create meetings for your own Zoom account, or external accounts if your app is published to the Zoom App Marketplace. Make sure to pass in an access_token as the request auth header.
POST https://api.zoom.us/v2/users/{userId}/meetings
{
"topic": "My Meeting",
"duration": 30
"type": 2,
"passcode": "abc123",
"start_time": "2025-03-28T12:00:00Z"
}
Then, you can embed the Zoom Meeting experience in your webpage via the Meeting SDK.
import { ZoomMtg } from '@zoom/meetingsdk'
ZoomMtg.preLoadWasm()
ZoomMtg.prepareWebSDK()
ZoomMtg.init({
leaveUrl: leaveUrl, // https://example.com/thanks-for-joining
success: (success) => {
ZoomMtg.join({
sdkKey: sdkKey,
signature: signature,
meetingNumber: meetingNumber,
passWord: passWord,
userName: userName,
zak: zakToken, // the host's ZAK token
success: (success) => {
console.log(success)
},
error: (error) => {
console.log(error)
}
})
},
error: (error) => {
console.log(error)
}
})