View source: R/insert_records.R
insert_records | R Documentation |
Insert rows into an Airtable table. Requires that data names and types exactly match column names and types in Airtable. Violating this assumption will return a 422 Unprocessable Entity error. Supports batch insert and parallel JSON encoding (recommended for large tables).
insert_records(
data,
airtable,
typecast = FALSE,
parallel = FALSE,
batch_size = 10
)
data |
A dataframe containing records to insert |
airtable |
An airtable object |
typecast |
If |
parallel |
If |
batch_size |
Number of records per request to insert. Maximum of 10 |
A dataframe (invisibly) of the input data, to be stored as an object or piped into further 'dplyr' functions
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.