import zoomApi from 'zoomapi'
type Zoom = {
accountId: string
oauthClientId: string
oauthClientSecret: string
webhookSecretToken: string
}
export async function main(resource: Zoom, webinarId: string) {
const client = zoomApi(resource)
const createdMeeting = await client.webinars.ListPastWebinarQA(webinarId)
return createdMeeting
}
Submitted by hugo697 398 days ago
import zoomApi from 'zoomapi'
type Zoom = {
accountId: string
oauthClientId: string
oauthClientSecret: string
webhookSecretToken: string
}
export async function main(resource: Zoom, webinarId: string) {
const client = zoomApi(resource)
const createdMeeting = await client.webinars.ListPastWebinarQA(webinarId)
return createdMeeting
}
Submitted by hugo697 764 days ago