coda_upsert_rows
Insert or update rows in a Coda table by specifying key columns for matching.
Instructions
Insert or upsert rows into a table
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| docId | Yes | The ID of the document | |
| tableIdOrName | Yes | The ID or name of the table | |
| rows | Yes | JSON string of rows to upsert, e.g. [{"cells": [{"column": "Name", "value": "Alice"}, {"column": "Age", "value": 30}]}] | |
| keyColumns | No | JSON string of column IDs or names to use as upsert keys, e.g. ["Name"] - optional |