Skip to main content
Create a new field in an Airtable table

Tool details

FieldValue
Nameairtable__create_field
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "baseId": {
      "type": "string",
      "description": "Airtable base ID"
    },
    "tableId": {
      "type": "string",
      "description": "Airtable table ID"
    },
    "name": {
      "type": "string",
      "description": "Field name"
    },
    "type": {
      "type": "string",
      "description": "Airtable field type"
    },
    "description": {
      "type": "string",
      "description": "Field description"
    },
    "options": {
      "type": "object",
      "description": "Field type-specific options"
    }
  },
  "required": [
    "baseId",
    "tableId",
    "name",
    "type"
  ],
  "description": "Input schema for the airtable__create_field tool."
}

Output schema

This tool does not publish an output schema.