notion_create_page
Create a new page in Notion as a child of an existing page or database. Define properties, add content blocks, and optionally include icons or cover images.
Instructions
Creates a new page in Notion. Can be a child of a page or database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
children | No | Optional page content as array of block objects | |
cover | No | Optional page cover image | |
icon | No | Optional page icon | |
parent | Yes | Parent page or database | |
properties | Yes | Page properties. Must match parent database schema if parent is a database. |
Input Schema (JSON Schema)
{
"properties": {
"children": {
"description": "Optional page content as array of block objects",
"items": {
"type": "object"
},
"type": "array"
},
"cover": {
"description": "Optional page cover image",
"properties": {
"external": {
"properties": {
"url": {
"description": "URL of cover image",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"enum": [
"external"
],
"type": "string"
}
},
"required": [
"type",
"external"
],
"type": "object"
},
"icon": {
"description": "Optional page icon",
"properties": {
"emoji": {
"description": "Emoji character (if type is emoji)",
"type": "string"
},
"external": {
"properties": {
"url": {
"description": "URL of external image",
"type": "string"
}
},
"type": "object"
},
"type": {
"enum": [
"emoji",
"external"
],
"type": "string"
}
},
"type": "object"
},
"parent": {
"description": "Parent page or database",
"properties": {
"database_id": {
"description": "ID of parent database (required if type is database_id)",
"type": "string"
},
"page_id": {
"description": "ID of parent page (required if type is page_id)",
"type": "string"
},
"type": {
"description": "Type of parent",
"enum": [
"page_id",
"database_id"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"properties": {
"description": "Page properties. Must match parent database schema if parent is a database.",
"type": "object"
}
},
"required": [
"parent",
"properties"
],
"type": "object"
}