Record inserter
Last updated
Last updated
[apis/airtable/Record inserter]
Inserts a single records into the specified AirTable table.
The input received on parameter record
must match the target table schema.
For detailed parameter information, see the AirTable API documentation:
https://airtable.com/api/meta
Keywords: airtable, insert, upload, create, append, record, row
AT record: {"fields": {string: any}}
Receives the record to insert into AirTable.
Example: ```json { "fields": { "number column": 0, "string column": "value0" } } ```
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:
record: {"fields": {string: any}}["fields"]
Sends the record that was successfully inserted into AirTable. Example:
AT record:
Sends the record that was successfully inserted into AirTable, including metadata like row ID, and date & time of creation. Example:
response:
Sends the entire response from the AirTable API without modification.
error: {"error": string, optional "details": any}
Sends the error, if one occurred.