air_get: Get a list of records or retreive a single

Description Usage Arguments Value

Description

You can retrieve records in an order of a view by providing the name or ID of the view in the view query parameter. The results will include only records visible in the order they are displayed.

Usage

1
2
3
air_get(base, table_name, record_id = NULL, limit = NULL, offset = NULL,
  view = NULL, sortField = NULL, sortDirection = NULL,
  combined_result = TRUE)

Arguments

base

Airtable base

table_name

Table name

record_id

(optional) Use record ID argument to retrieve an existing record details

limit

(optional) A limit on the number of records to be returned. Limit can range between 1 and 100.

offset

(optional) Page offset returned by the previous list-records call. Note that this is represented by a record ID, not a numerical offset.

view

(optional) The name or ID of the view

sortField

(optional) The field name to use for sorting

sortDirection

(optional) "asc" or "desc". The sort order in which the records will be returned. Defaults to asc.

combined_result

If TRUE (default) all data is returned in the same data frame. If FALSE table fields are returned in separate fields element.

Value

A data frame with records or a list with record details if record_id is specified.


bergant/airtabler documentation built on May 12, 2019, 3:04 p.m.