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§
§
§
§
§
§
§
§
readonly additional Fields?: { ... }
readonly authentication?: "airtableApi" | "airtableTokenApi" | "airtableOAuth2Api"
Default: "airtableApi"
readonly base Id?: { ... }
The Airtable Base in which to operate on Default: {"mode":"url","value":""}
readonly download Attachments?: boolean
Whether the attachment fields define in 'Download Fields' will be downloaded
readonly download Field Names?: string
Name of the fields of type 'attachment' that should be downloaded. Multiple ones can be defined separated by comma. Case sensitive.
readonly poll Times: { ... }
§readonly table Id?: { ... }
Default: {"mode":"url","value":""}
readonly trigger Field?: string
A Created Time or Last Modified Time field that will be used to sort records. If you do not have a Created Time or Last Modified Time field in your schema, please create one, because without this field trigger will not work correctly.
Default: {}