Gets details of a scheduled webinar. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/webinar).
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 meeting = await client.webinars.GetWebinar(webinarId)
13
return meeting
14
15