?
codaGetPage
Export and read the contents of a page from a Coda document.
mindstudio.codaGetPage({ docId, pageId }) → Result
Export and read the contents of a page from a Coda document.
Parameters
connectionId
string
Coda OAuth connection ID
docId
string
RequiredCoda document ID
pageId
string
RequiredPage ID within the document
outputFormat
string
Export format for the page content. Defaults to 'html'
htmlmarkdown
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.codaGetPage({ docId: /* ... */, pageId: /* ... */ });