?
codaFindRow
Search for a row in a Coda table by matching column values.
mindstudio.codaFindRow({ docId, tableId, rowData }) → Result
Search for a row in a Coda table by matching column values.
Parameters
connectionId
string
Coda OAuth connection ID
docId
string
RequiredCoda document ID
tableId
string
RequiredTable ID to search within
rowData
object
RequiredColumn values to match against, keyed by column ID. All criteria are ANDed together
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.codaFindRow({ docId: /* ... */, tableId: /* ... */, rowData: /* ... */ });