Skip to main content
Update fields on an existing record

Tool details

FieldValue
Nameairtable__update_record
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "baseId": {
      "type": "string",
      "description": "Airtable base ID"
    },
    "tableIdOrName": {
      "type": "string",
      "description": "Table ID or URL-encoded table name"
    },
    "recordId": {
      "type": "string",
      "description": "Airtable record ID"
    },
    "fields": {
      "type": "object",
      "description": "Field values to update"
    },
    "typecast": {
      "type": "boolean",
      "description": "Allow Airtable to typecast field values"
    }
  },
  "required": [
    "baseId",
    "tableIdOrName",
    "recordId",
    "fields"
  ],
  "description": "Input schema for the airtable__update_record tool."
}

Output schema

This tool does not publish an output schema.