Nothing
delete <- function(ids, airtable_obj){
response <- httr::DELETE(sprintf("%s?%s", attr(airtable_obj, 'request_url'), ids),
config = httr::add_headers(
Authorization = paste("Bearer", get_airtable_api_key())
)
)
if (!httr::status_code(response) %in% c(200)){
stop(paste0("Error in DELETE ", process_error(httr::status_code(response))), call. = FALSE)
}
Sys.sleep(.2)
}
vdelete <- Vectorize(delete, vectorize.args = "ids")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.