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.
Last updated
Review the official Airtable API Documentation 📖
Note that "options" are optional, other variables are required 👍
Missing a formula? Suggest one here 💡
You can always contact us via support@sheet.link or by messaging us on Twitter @SheetLink
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)
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.