UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

41 lines (37 loc) 975 B
/** * Zoom Node - Version 1 * Discriminator: resource=meeting, operation=delete */ interface Credentials { zoomApi: CredentialReference; zoomOAuth2Api: CredentialReference; } /** Delete a meeting */ export type ZoomV1MeetingDeleteParams = { resource: 'meeting'; operation: 'delete'; authentication?: 'accessToken' | 'oAuth2' | Expression<string>; /** * Meeting ID */ meetingId?: string | Expression<string> | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Meeting occurrence ID */ occurrenceId?: string | Expression<string> | PlaceholderValue; /** Whether to notify hosts and alternative hosts about meeting cancellation via email * @default false */ scheduleForReminder?: boolean | Expression<boolean>; }; }; export type ZoomV1MeetingDeleteNode = { type: 'n8n-nodes-base.zoom'; version: 1; credentials?: Credentials; config: NodeConfig<ZoomV1MeetingDeleteParams>; };