Notion Toolkit
Name | notion |
Package | arcade_notion (opens in a new tab) |
Repository | Github (opens in a new tab) |
Install | pip install arcade_notion==0.1.1 |
Version | 0.1.1 |
Description | Notion integration to search, create, update, and delete databases/pages. |
Author | [email protected] |
Tool Name | Description |
---|---|
CreateSubpage | Create a new page under a parent page using its ID. |
CreatePageByParentTitle | Creates a new page under an existing Notion page or database. |
GetPageId | Finds and returns the ID of a Notion page by searching for its title. Only use when page ID is explicitly required. |
CreateSubpage
Create a new page under a parent page using its ID.
Parameters
parent_id
(string, required) ID of the parent pagetitle
(string, required) Title for the new pagecontent
(string, required) Content in markdown format.
CreatePageByParentTitle
Creates a new page under an existing Notion page or database.
Parameters
parent_title
(string, required) Title of an existing page/database where the new page will be created, no need to include the page IDtitle
(string, required) Title for your new pagecontent
(string, required) Content in markdown format.
GetPageId
Finds and returns the ID of a Notion page by searching for its title. Only use when page ID is explicitly required.
Parameters
title
(string, required) Title of the page to find