Reference

codaCreateUpdateRow

Create a new row or update an existing row in a Coda table.
mindstudio.codaCreateUpdateRow({ docId, tableId, rowData }) → Result

Create a new row or update an existing row in a Coda table.

Parameters
connectionId
string
Coda OAuth connection ID
docId
string
RequiredCoda document ID
tableId
string
RequiredTable ID within the document
rowId
string
Row ID to update. Omit to create a new row
rowData
object
RequiredColumn values to set, keyed by column ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.codaCreateUpdateRow({
  docId: /* ... */,
  tableId: /* ... */,
  rowData: /* ... */
});