create_record
Add a new record to a specified Airtable base and table using field values, with optional automatic data conversion. Simplified through secure OAuth 2.0 authentication.
Instructions
Create a single record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_id | Yes | The Airtable base ID | |
fields | Yes | Field values for the new record | |
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"
},
"fields": {
"additionalProperties": true,
"description": "Field values for the new record",
"title": "Fields",
"type": "object"
},
"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",
"fields"
],
"type": "object"
}