Airtable
Use the Airtable API to create, read, update, and destroy records in your Airtable Base.
Last updated
Use the Airtable API to create, read, update, and destroy records in your Airtable Base.
Review the official Airtable API Documentation π
Note that "options" are optional, other variables are required π
Formula
=Airtable_GetAll("base_id" ,"table_name" ,"options")
Retrieve all existing records in a defined table.
=Airtable_Get( "base_id" ,"table_name", "record_id" ,"options")
Retrieve an existing record in a defined table.
=Airtable_Delete( "base_id" ,"table_name", "record_id" ,"options")
Delete an existing record in a defined table.
=Airtable_Update( "base_id" ,"table_name", "record" ,"options")
Update an existing record in a defined table. ("record" must be in JSON format and include the record_id of the record to update)
=Airtable_Create( "base_id" ,"table_name", "record" ,"options")
Create a new record in a defined table. ("record" must be in JSON format)
Missing a formula? Suggest one here π‘
Page
π Quick Startβ
60 second getting started guide.
ββ FAQβ
Answers to frequently asked SheetLink questions.
π οΈ Functionsβ
Powerful functions unique to SheetLink.
πͺ "options"β
Control the request to and response from any application.
You can always contact us via support@sheet.link or by messaging us on Twitter @SheetLink
Last updated