Delete records in an Airtable table based on their Airtable record ID.
delete_records(
data,
airtable,
airtable_id_col = "airtable_record_id",
safely = TRUE,
batch_size = 10
)
A vector of IDs deleted
A data frame containing records to delete
An airtable object
Column containing Airtable record IDs. Not required if record IDs are stored in row names as returned from read_airtable
.
If TRUE
, ask for confirmation before executing DELETE request
Number of requests to send at a time. Maximum of 10.