Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/zoom

src/scheduled-upcoming-meetings.ts

13 lines · 314 B · TypeScript
import listMeetings from './meetings/list.ts'

/**
 * No-argument scheduled wrapper. Lists upcoming meetings for `me`.
 * The package job is disabled by default.
 */
export default async function scheduledUpcomingMeetings() {
	return await listMeetings({
		userId: 'me',
		type: 'upcoming',
		page_size: 30,
	})
}