Airtable · Arazzo Workflow

Airtable Evolve a Table Schema

Version 1.0.0

Rename a table and update one of its fields within an existing base.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub ApplicationCollaborationDataDatabasesLow-CodeProductivitySpreadsheetsArazzoWorkflows

Provider

airtable

Workflows

evolve-table-schema
Rename a table and update one of its fields.
Reads the base schema to confirm the target table and field, updates the table's name and description, and then updates a field's name, description, or options.
3 steps inputs: baseId, fieldDescription, fieldId, fieldName, fieldOptions, tableDescription, tableId, tableName outputs: fieldId, tableId
1
confirmSchema
Read the base schema to confirm the target table and field exist before modifying them.
2
renameTable
Update the table's name and optional description. Only the supplied properties are changed.
3
updateField
Update the target field's name, description, or configuration options. Only the supplied properties are changed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Evolve a Table Schema
  summary: Rename a table and update one of its fields within an existing base.
  description: >-
    Evolves the structure of an existing Airtable base by first reading the
    base schema to confirm the target table and field, then renaming (and
    optionally re-describing) the table, and finally updating a field's name,
    description, or configuration options. Every step spells out its request
    inline so the flow can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: basesApi
  url: ../openapi/airtable-bases-api-openapi.yml
  type: openapi
- name: fieldsApi
  url: ../openapi/airtable-fields-api-openapi.yml
  type: openapi
- name: tablesApi
  url: ../openapi/airtable-tables-api-openapi.yml
  type: openapi
workflows:
- workflowId: evolve-table-schema
  summary: Rename a table and update one of its fields.
  description: >-
    Reads the base schema to confirm the target table and field, updates the
    table's name and description, and then updates a field's name, description,
    or options.
  inputs:
    type: object
    required:
    - baseId
    - tableId
    - fieldId
    - tableName
    properties:
      baseId:
        type: string
        description: The Airtable base identifier (e.g. appXXXXXXXXXXXXXX).
      tableId:
        type: string
        description: The identifier of the table to rename (e.g. tblXXXXXXXXXXXXXX).
      fieldId:
        type: string
        description: The identifier of the field to update (e.g. fldXXXXXXXXXXXXXX).
      tableName:
        type: string
        description: The new name for the table.
      tableDescription:
        type: string
        description: An optional new description for the table.
      fieldName:
        type: string
        description: An optional new name for the field.
      fieldDescription:
        type: string
        description: An optional new description for the field.
      fieldOptions:
        type: object
        description: Optional updated configuration options for the field.
  steps:
  - stepId: confirmSchema
    description: >-
      Read the base schema to confirm the target table and field exist before
      modifying them.
    operationId: getBaseSchema
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tables: $response.body#/tables
  - stepId: renameTable
    description: >-
      Update the table's name and optional description. Only the supplied
      properties are changed.
    operationId: updateTable
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: tableId
      in: path
      value: $inputs.tableId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.tableName
        description: $inputs.tableDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tableId: $response.body#/id
      name: $response.body#/name
  - stepId: updateField
    description: >-
      Update the target field's name, description, or configuration options.
      Only the supplied properties are changed.
    operationId: updateField
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: tableId
      in: path
      value: $inputs.tableId
    - name: fieldId
      in: path
      value: $inputs.fieldId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.fieldName
        description: $inputs.fieldDescription
        options: $inputs.fieldOptions
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      fieldId: $response.body#/id
      name: $response.body#/name
  outputs:
    tableId: $steps.renameTable.outputs.tableId
    fieldId: $steps.updateField.outputs.fieldId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/airtable-evolve-table-schema-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.