Bulk records inserter
Last updated
Last updated
[apis/airtable/Bulk records inserter]
Inserts multiple records into the specified AirTable table.
The input received on parameter records
must match the target table schema.
Sends records to the AirTable API in batches of 10.
For detailed parameter information, see the AirTable API documentation:
https://airtable.com/api/meta
Keywords: airtable, insert, upload, create, append, bulk, batch, mass
AT records: {"fields": {string: any}}[]
Receives arbitrary number of records to be inserted into AirTable. Example:
params:
Receives the authentication & table parameters required to construct the request. API Key: In AirTable, go to 'Help?' and click on 'API Documentation'. Scroll to the "Authorization" section to retrieve your API key. Base ID: In AirTable, go to 'Help?' and click on 'API Documentation'. Find the ID of the base in the introduction. Table Name: Use the table name located on the tab of the spreadsheet. Example:
records: {"fields": {string: any}}[][number]["fields"][]
Sends records that were successfully inserted into AirTable. Example:
AT records:
Sends records that were successfully inserted into AirTable, in the format returned by AirTable, including metadata like row ID, and date & time of creation. Example:
responses:
Sends the entire response from the AirTable API without modification.
error: {"error": string, optional "details": any}
Sends the error, if one occurred.