Interface AirtableTriggerNodeParameters

Source
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 additionalFields?: { ... }

Default: {}

§readonly authentication?: "airtableApi" | "airtableTokenApi" | "airtableOAuth2Api"

Default: "airtableApi"

§readonly baseId?: { ... }

The Airtable Base in which to operate on Default: {"mode":"url","value":""}

§readonly downloadAttachments?: boolean

Whether the attachment fields define in 'Download Fields' will be downloaded

§readonly downloadFieldNames?: string

Name of the fields of type 'attachment' that should be downloaded. Multiple ones can be defined separated by comma. Case sensitive.

§readonly pollTimes: { ... }
§readonly tableId?: { ... }

Default: {"mode":"url","value":""}

§readonly triggerField?: 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.