?
notionCreatePage
Create a new page in Notion as a child of an existing page.
mindstudio.notionCreatePage({ pageId, content, title }) → Result
Create a new page in Notion as a child of an existing page.
Parameters
pageId
string
RequiredParent page ID to create the new page under
content
string
RequiredPage content in markdown format
title
string
RequiredPage title
connectionId
string
Notion OAuth connection ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.notionCreatePage({ pageId: /* ... */, content: /* ... */, title: /* ... */ });