0

List Past Webinar Q&A

by
Published Jun 6, 2022

The feature for Webinars allows attendees to ask questions during the Webinar and for the panelists, co-hosts and host to answer their questions. Use this API to list Q&A of a specific Webinar.

Script zoom Verified

The script

Submitted by hugo697 Bun
Verified 398 days ago
1
import zoomApi from 'zoomapi'
2

3
type Zoom = {
4
	accountId: string
5
	oauthClientId: string
6
	oauthClientSecret: string
7
	webhookSecretToken: string
8
}
9

10
export async function main(resource: Zoom, webinarId: string) {
11
	const client = zoomApi(resource)
12
	const createdMeeting = await client.webinars.ListPastWebinarQA(webinarId)
13
	return createdMeeting
14
}
15