Skip to contents

Transforms a list of records obtained from the airtable api (for example using air_get_records) into a data frame.

Usage

air_records_to_tibble(records)

Arguments

records

List of records from an airtable table

Value

a tibble

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()
} # }