update-page
Modify existing Notion pages by updating their title and content using the required pageId and content fields, enabling streamlined content management and collaboration.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| pageId | Yes | ||
| title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"pageId": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"pageId",
"content"
],
"type": "object"
}