Notion
notion_create_page
Create a new page in Notion. Set parent as a data source (data_source_id) or another page (page_id). Provide properties matching the parent schema. Optionally include initial content blocks.
Remote node2flow/notion
Other tools also called notion_create_page?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"icon": {
"type": "object",
"description": "Page icon: { \"type\": \"emoji\", \"emoji\": \"...\" }"
},
"cover": {
"type": "object",
"description": "Cover image: { \"type\": \"external\", \"external\": { \"url\": \"...\" } }"
},
"parent": {
"type": "object",
"description": "Parent: { \"data_source_id\": \"...\" } for database pages, or { \"page_id\": \"...\" } for sub-pages"
},
"children": {
"type": "array",
"description": "Initial content blocks (optional)"
},
"properties": {
"type": "object",
"description": "Page properties. For title: { \"Name\": { \"title\": [{ \"text\": { \"content\": \"...\" } }] } }"
}
}
}