> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Update field

> Update an Airtable field definition.

`airtable.updateField` changes a field's name, description, or options.

```ts automations/rename-stage-field.automation.ts theme={null}
import { automation } from "automate.ax"
import { airtable } from "automate.ax/airtable"

export default automation("Rename stage field", () => {
  airtable.updateField({
    baseId: "app123",
    tableId: "tbl123",
    fieldId: "fld123",
    name: "Lifecycle stage",
  })
})
```

`baseId`, `tableId`, and `fieldId` are required. Supply at least one of `name`, `description`, or provider-documented `options`. Returns the updated field. Requires `schema.bases:write` and base creator access.
