update-page
Modify properties or archive an existing page in Notion using the 'update-page' tool. Provide the page ID and new properties to keep your workspace content up-to-date.
Instructions
Update an existing page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | Whether to archive the page | |
page_id | Yes | ID of the page to update | |
properties | Yes | Updated page properties |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether to archive the page",
"type": "boolean"
},
"page_id": {
"description": "ID of the page to update",
"type": "string"
},
"properties": {
"description": "Updated page properties",
"type": "object"
}
},
"required": [
"page_id",
"properties"
],
"type": "object"
}