Format Airtable records to a data frame (tibble)
air_records_to_tibble.Rd
Transforms a list of records obtained from the airtable api (for example
using air_get_records
) into a data frame.
Details
Fields that have a only one item are stored as a vector while fields that accept multiple items are stored as a nested list column
Examples
if (FALSE) { # \dontrun{
# Get all records for the table boats
air_get_records(table = "boats", base_id = "appjEVaN8kBNXAWak") %>%
air_record_to_tibble()
} # }