/** * Zoom Node - Version 1 * Discriminator: resource=meeting, operation=update */ interface Credentials { zoomApi: CredentialReference; zoomOAuth2Api: CredentialReference; } /** Update a meeting */ export type ZoomV1MeetingUpdateParams = { resource: 'meeting'; operation: 'update'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Meeting ID */ meetingId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Meeting agenda */ agenda?: string | Expression | PlaceholderValue; /** Meeting duration (minutes) * @default 0 */ duration?: number | Expression; /** Password to join the meeting with maximum 10 characters */ password?: string | Expression | PlaceholderValue; /** Schedule meeting for someone else from your account, provide their email ID */ scheduleFor?: string | Expression | PlaceholderValue; /** Settings * @default {} */ settings?: { /** Determine how participants can join audio portion of the meeting * @default both */ audio?: 'both' | 'telephony' | 'voip' | Expression; /** Alternative hosts email IDs */ alternativeHosts?: string | Expression | PlaceholderValue; /** Auto Recording * @default none */ autoRecording?: 'local' | 'cloud' | 'none' | Expression; /** Host Meeting in China * @default false */ cnMeeting?: boolean | Expression; /** Host Meeting in India * @default false */ inMeeting?: boolean | Expression; /** Whether to start a video when host joins the meeting * @default false */ hostVideo?: boolean | Expression; /** Whether to allow participants to join the meeting before host starts it * @default false */ joinBeforeHost?: boolean | Expression; /** Whether to mute participants upon entry * @default false */ muteUponEntry?: boolean | Expression; /** Whether to start a video when participant joins the meeting * @default false */ participantVideo?: boolean | Expression; /** Registration type. Used for recurring meetings with fixed time only. * @default 1 */ registrationType?: 1 | 2 | 3 | Expression; /** Whether to add watermark when viewing a shared screen * @default false */ watermark?: boolean | Expression; }; /** Start time should be used only for scheduled or recurring meetings with fixed time */ startTime?: string | Expression; /** Time zone used in the response. The default is the time zone of the calendar. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ timeZone?: string | Expression; /** Meeting topic */ topic?: string | Expression | PlaceholderValue; /** Meeting type * @default 2 */ type?: 1 | 2 | 3 | 8 | Expression; }; }; export type ZoomV1MeetingUpdateNode = { type: 'n8n-nodes-base.zoom'; version: 1; credentials?: Credentials; config: NodeConfig; };