Reference
Remy Reference/agent/fetchGoogleDoc
?

fetchGoogleDoc

Fetch the contents of an existing Google Document.
mindstudio.fetchGoogleDoc({ documentId, exportType }) → Result

Fetch the contents of an existing Google Document.

Parameters
documentId
string
RequiredGoogle Document ID (from the document URL)
connectionId
string
Google OAuth connection ID
exportType
string
RequiredOutput format: "html", "markdown", "json", or "plain"
htmlmarkdownjsonplain
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.fetchGoogleDoc({
  documentId: /* ... */,
  exportType: /* ... */
});