create_records
Create multiple records in Airtable by specifying a base ID, table ID, and record data. Supports automatic data conversion for streamlined integration.
Instructions
Create multiple records
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_id | Yes | The Airtable base ID | |
records | Yes | List of records to create | |
table_id | Yes | The table ID or name | |
typecast | No | Enable automatic data conversion |
Input Schema (JSON Schema)
{
"properties": {
"base_id": {
"description": "The Airtable base ID",
"title": "Base Id",
"type": "string"
},
"records": {
"description": "List of records to create",
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Records",
"type": "array"
},
"table_id": {
"description": "The table ID or name",
"title": "Table Id",
"type": "string"
},
"typecast": {
"default": false,
"description": "Enable automatic data conversion",
"title": "Typecast",
"type": "boolean"
}
},
"required": [
"base_id",
"table_id",
"records"
],
"type": "object"
}