Airtable Flow
An agent that allows you to interact with an Airtable database.
Overview
The Airtable flow allows you to interact with an Airtable database. You can create, read, update, and delete records in the database. The flow also supports basic authentication and pagination.
How to Use
Input Format
The input format for the Airtable flow is a JSON object with the following properties:
baseId
: The base ID of the Airtable database.tableName
: The name of the table in the Airtable database.operation
: The operation to perform on the table. Can be one of the following:create
: Create a new record in the table.read
: Read records from the table.update
: Update an existing record in the table.delete
: Delete a record from the table.
record
: The record to perform the operation on. This is required for create, update, and delete operations.
Output Format
The output format for the Airtable flow is a JSON object with the following properties:
success
: A boolean indicating whether the operation was successful.message
: A message indicating the result of the operation.data
: The data returned by the Airtable API. This is only present if the operation was successful.