interface AirtableTriggerNodeParameters {
additionalFields?: {
fields?: string;
formula?: string;
viewId?: string;
};
authentication?: | "airtableApi"
| "airtableTokenApi"
| "airtableOAuth2Api";
baseId?: { mode: "id"
| "url"; value: string };
downloadAttachments?: boolean;
downloadFieldNames?: string;
pollTimes: {
item: { mode: string & {} | "everyMinute" }[];
};
tableId?: { mode: "id"
| "url"; value: string };
triggerField?: string;
}
Properties§
Source§readonly authentication?: "airtableApi" | "airtableTokenApi" | "airtableOAuth2Api"
readonly authentication?: "airtableApi" | "airtableTokenApi" | "airtableOAuth2Api"
Default: "airtableApi"
Source§readonly base Id?: { mode: "id" | "url"; value: string }
readonly base Id?: { mode: "id" | "url"; value: string }
The Airtable Base in which to operate on Default: {"mode":"url","value":""}
Source§readonly download Attachments?: boolean
readonly download Attachments?: boolean
Whether the attachment fields define in 'Download Fields' will be downloaded
Default: {}