Creates new records in an Airtable table
create_records_for_tableFull Description
Creates new records in an Airtable table. To get baseId and tableId, use the search_bases and list_tables_for_base tools first.
Parameters
baseIdstringThe ID of the base (application) containing the table. Must start with "app" and is 14 characters long. Example: "appZfrNIUEip5MazD". Do not substitute user-facing names for baseId. To get baseId, use the search_bases or list_bases tool.
recordsarrayAn array of record objects to create. Each record must have a "fields" property containing the field values. You can create up to 10 records per request.
tableIdstringThe ID of the table to create a record in. Must start with "tbl" and is 14 characters long. Example: "tblGlReoTNWfYnXIG". Do not substitute user-facing names for tableId. To get tableId, use the list_tables_for_base tool.
typecastbooleanWhether or not to perform best-effort automatic data conversion from string values. Defaults to false to preserve data integrity.