coda_update_row
Update specific column values in a single Coda table row while leaving other columns unchanged. Use column names to target modifications.
Instructions
Update a single row in a Coda table.
Updates specific column values for one row. Only the specified columns are changed — other columns are left unchanged. Use column names (not IDs). For bulk updates, use coda_insert_rows with key_columns (upsert) instead. Returns a requestId for async mutation tracking.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| doc_id | Yes | The doc ID containing the table | |
| table_id_or_name | Yes | Table ID or name | |
| row_id_or_name | Yes | Row ID or name to update | |
| cells | Yes | Column values to update. List of {column: name, value: val} objects. Example: [{'column': 'Status', 'value': 'Done'}] |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |