set_record_template_cell
Pre-fill a specific field on an Airtable record template with a static value or linked record.
Instructions
Pre-fill a field value on a record template.
CELL OBJECT TYPES (verified via API capture 2026-05-01):
Static value (text, number, boolean, single-select choice ID): { "type": "static", "value": "some text" } { "type": "static", "value": 42 } { "type": "static", "value": true } { "type": "static", "value": "selXXXXXXXXXXXXXX" } ← single-select: pass choice ID
Linked record(s): { "type": "linkedRows", "value": [{ "foreignRowId": "recXXX", "foreignRowDisplayName": "Record Name" }] }
To clear a field, omit the cellObject or pass null value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The Airtable base/application ID | |
| templateId | Yes | The template ID (rtpXXX) | |
| columnId | Yes | Field ID (fldXXX) | |
| cellObject | Yes | Cell value object. Must have "type" ("static" or "linkedRows") and "value". | |
| debug | No | When true, include raw Airtable response in output for diagnostics |