Reference
Remy Reference/agent/notionUpdatePage
?

notionUpdatePage

Update the content of an existing Notion page.
mindstudio.notionUpdatePage({ pageId, content, mode }) → Result

Update the content of an existing Notion page.

Parameters
pageId
string
RequiredNotion page ID to update
content
string
RequiredNew content in markdown format
mode
string
RequiredHow to apply the content: 'append' adds to end, 'overwrite' replaces all existing content
appendoverwrite
connectionId
string
Notion OAuth connection ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.notionUpdatePage({
  pageId: /* ... */,
  content: /* ... */,
  mode: /* ... */
});