airtable.Rd
Creates an S3 airtable object, which serves as a pointer for rairtable functions
airtable( table, base, view = NULL, api_url = "https://api.airtable.com", api_version = 0 )
table | Table name in Airtable |
---|---|
base | Airtable base containing table. A base functions like a schema in a traditional database. You can retrieve the base ID from the API documentation. |
view | Optional view of data to read |
api_url | API endpoint to connect to. Can be changed for API integrations that require custom endpoint |
api_version | Version of API to use. Defaults to 0 (the current version as of Fall 2021) |
An airtable object
if (FALSE) { table <- airtable("Table 1", "appXXXXXXXXXXXXX") }