Airtable
Use the Airtable API to create, read, update, and destroy records in your Airtable Base.
Last updated
Was this helpful?
Use the Airtable API to create, read, update, and destroy records in your Airtable Base.
Last updated
Was this helpful?
Review the official 📖
Formula
Retrieve all existing records in a defined table.
Retrieve an existing record in a defined table.
Delete an existing record in a defined table.
Update an existing record in a defined table. ("record" must be in JSON format and include the record_id of the record to update)
Create a new record in a defined table. ("record" must be in JSON format)
Missing a formula? 💡
Page
60 second getting started guide.
Answers to frequently asked SheetLink questions.
Powerful functions unique to SheetLink.
Control the request to and response from any application.
You can always contact us via support@sheet.link or by messaging us on Twitter
=Airtable( )
Interact with the API using only the SheetLink
=Airtable_GetAll("base_id" ,"table_name" ,)
=Airtable_Get( "base_id" ,"table_name", "record_id" ,)
=Airtable_Delete( "base_id" ,"table_name", "record_id" ,)
=Airtable_Update( "base_id" ,"table_name", "record" ,)
=Airtable_Create( "base_id" ,"table_name", "record" ,)
🚀
🛠️
💪