update
Update Notion page properties like Status, Priority, or Due Date without altering page content. Specify the page and property values to apply changes instantly.
Instructions
Quickly update page properties without rewriting content. Much simpler than the write tool for property-only changes.
The page content (blocks) is never touched — only properties are updated.
Parameters
page: Page ID, URL, or name
properties: Key-value object of properties to set
Examples
Update a single property: update({ page: "abc123", properties: { "Status": "Done" } })
Update multiple properties: update({ page: "My Task", properties: { "Status": "Done", "Priority": "High", "Due Date": "2026-03-01" } })
Supported value types:
Text: "value"
Number: 42
Checkbox: true / false
Date: "2026-03-01"
Date range: "2026-03-01 to 2026-03-15"
Select/Status: "Option Name"
Multi-select: ["tag1", "tag2"]
URL: "https://..."
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | Yes | Page ID, URL, or name | |
| properties | Yes | Properties to update as key-value pairs (e.g. { "Status": "Done", "Priority": "High" }) |