interface AirtableV1NodeParameters {
addAllFields?: boolean;
additionalOptions?: {
fields?: string;
filterByFormula?: string;
sort?: {
property: {
direction?: "asc" | "desc";
field?: string;
}[];
};
view?: string;
};
application?: { mode: "id"
| "url"; value: string };
authentication?:
| "airtableApi"
| "airtableTokenApi"
| "airtableOAuth2Api";
downloadAttachments?: boolean;
downloadFieldNames?: string;
fields?: string;
id?: string;
limit?: number;
operation?: | "update"
| "list"
| "delete"
| "append"
| "read";
options?: {
bulkSize?: number;
ignoreFields?: string;
typecast?: boolean;
};
returnAll?: boolean;
table?: { mode: "id"
| "url"; value: string };
updateAllFields?: boolean;
}
Properties§
Source§readonly additional Options?: {
fields?: string;
filterByFormula?: string;
sort?: {
property: {
direction?: "asc" | "desc";
field?: string;
}[];
};
view?: string;
}
readonly additional Options?: {
fields?: string;
filterByFormula?: string;
sort?: {
property: {
direction?: "asc" | "desc";
field?: string;
}[];
};
view?: string;
}
Additional options which decide which records should be returned Default: {}
Source§readonly application?: { mode: "id" | "url"; value: string }
readonly application?: { mode: "id" | "url"; value: string }
The Airtable Base in which to operate on Default: {"mode":"url","value":""}
Source§readonly authentication?: "airtableApi" | "airtableTokenApi" | "airtableOAuth2Api"
readonly authentication?: "airtableApi" | "airtableTokenApi" | "airtableOAuth2Api"
Default: "airtableApi"
Source§readonly download Attachments?: boolean
readonly download Attachments?: boolean
Whether the attachment fields define in 'Download Fields' will be downloaded
Source§readonly download Field Names?: string
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 and cannot include spaces after a comma.
Source§readonly fields?: string
readonly fields?: string
The name of fields for which data should be sent to Airtable Default: [] Type options: {"multipleValues":true,"multipleValueButtonText":"Add Field"}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
Source§readonly options?: {
bulkSize?: number;
ignoreFields?: string;
typecast?: boolean;
}
readonly options?: {
bulkSize?: number;
ignoreFields?: string;
typecast?: boolean;
}
Default: {}
Whether all fields should be sent to Airtable or only specific ones Default: true