Sign in

Update records

documented

Update one or more records in a table (batch up to 10 per request).

PATCH /v0/{baseId}/{tableName}Recordsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.airtable.com/v0/{{$baseId}}/{{$tableName}}" \
  -X PATCH \
  -H "Authorization: Bearer {{AIRTABLE_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"records": [ {"id": "{{$recordId1}}","fields": {"Name": "{{$name1}}","Description": "{{$description1}}"}}, {"id": "{{$recordId2}}","fields": {"Name": "{{$name2}}","Description": "{{$description2}}"}} ], "typecast": true }'