?
codaGetTableRows
Fetch rows from a Coda table with optional pagination.
mindstudio.codaGetTableRows({ docId, tableId }) → Result
Fetch rows from a Coda table with optional pagination.
Parameters
connectionId
string
Coda OAuth connection ID
docId
string
RequiredCoda document ID
tableId
string
RequiredTable ID within the document
limit
number | string
Maximum number of rows to return. Defaults to 10000
outputFormat
string
Output format for the result. Defaults to 'json'
jsoncsv
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.codaGetTableRows({ docId: /* ... */, tableId: /* ... */ });