Airtable · Arazzo Workflow

Airtable Enrich Records

Version 1.0.0

Find records missing data and patch the empty fields.

1 workflow 1 source API 1 provider
View Spec View on GitHub ApplicationCollaborationDataDatabasesLow-CodeProductivitySpreadsheetsArazzoWorkflows

Provider

airtable

Workflows

enrich-records
Locate a record with an empty field and patch it.
Lists records where the target field is blank, then patches the first matched record with the supplied enrichment fields.
2 steps inputs: baseId, emptyField, fields, tableIdOrName outputs: enrichedFields, enrichedRecordId
1
findMissing
Search the table for a record where the target field is empty, returning at most one match to enrich.
2
patchRecord
Patch the matched record with the enrichment fields, leaving all other fields intact. Typecast is enabled so string values are converted to the appropriate cell value types.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Enrich Records
  summary: Find records missing data and patch the empty fields.
  description: >-
    Fills gaps in a table by locating records where a field is empty and
    patching them with supplied values. The workflow searches with a
    filterByFormula that matches blank cells, then updates the first matched
    record with typecast enabled so string values are coerced to the correct
    cell types. 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: recordsApi
  url: ../openapi/airtable-records-api-openapi.yml
  type: openapi
workflows:
- workflowId: enrich-records
  summary: Locate a record with an empty field and patch it.
  description: >-
    Lists records where the target field is blank, then patches the first
    matched record with the supplied enrichment fields.
  inputs:
    type: object
    required:
    - baseId
    - tableIdOrName
    - emptyField
    - fields
    properties:
      baseId:
        type: string
        description: The Airtable base identifier (e.g. appXXXXXXXXXXXXXX).
      tableIdOrName:
        type: string
        description: The table id or name to enrich records in.
      emptyField:
        type: string
        description: The field name to test for emptiness (e.g. "Company").
      fields:
        type: object
        description: The map of field name/value pairs to patch onto the record.
  steps:
  - stepId: findMissing
    description: >-
      Search the table for a record where the target field is empty, returning
      at most one match to enrich.
    operationId: listRecords
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: tableIdOrName
      in: path
      value: $inputs.tableIdOrName
    - name: filterByFormula
      in: query
      value: "{$inputs.emptyField} = ''"
    - name: maxRecords
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recordId: $response.body#/records/0/id
      records: $response.body#/records
  - stepId: patchRecord
    description: >-
      Patch the matched record with the enrichment fields, leaving all other
      fields intact. Typecast is enabled so string values are converted to the
      appropriate cell value types.
    operationId: updateRecord
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: tableIdOrName
      in: path
      value: $inputs.tableIdOrName
    - name: recordId
      in: path
      value: $steps.findMissing.outputs.recordId
    requestBody:
      contentType: application/json
      payload:
        fields: $inputs.fields
        typecast: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recordId: $response.body#/id
      fields: $response.body#/fields
  outputs:
    enrichedRecordId: $steps.patchRecord.outputs.recordId
    enrichedFields: $steps.patchRecord.outputs.fields

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-enrich-records-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.