List records in table.

list_records(base = NULL, table = NULL, view = NULL,
  from_record = NULL, sort = NULL, page_size = 100,
  max_records = 10000, fields = NULL, filter = NULL,
  quiet = !interactive())

Arguments

base

Base, whatever this is Airtable does not document it.

table

Name of table.

view

The name or ID of a view. If set, only the records in that view will be returned. The records will be sorted according to the order of the view.

from_record

Record wherefrom to start listing.

sort

Sorting, asc or desc.

page_size

Size of pages, 100 max.

max_records

Maximum number of records to fetch.

fields

A vector of fields to retrieve.

filter

A formula used to filter records.

quiet

Set to TRUE to print helpful messages.