Notion: Update Page
Update properties of an existing Notion page or database entry. Use this to modify page metadata, status, or custom properties. Can also archive/unarchive pages. Ideal for: status updates, metadata changes, workflow state management.
Catalog action Integrations pipedream:notion
Update properties of an existing Notion page or database entry. Use this to modify page metadata, status, or custom properties. Can also archive/unarchive pages. Ideal for: status updates, metadata changes, workflow state management.
At a Glance
| Field | Value |
|---|---|
| Action ID | notion-update-page |
| Category | Integrations |
| Connector | pipedream:notion |
| Requires gas | No |
| Funds movement | None declared |
| Tags | pipedream, integration, oauth, notion, productivity, write, update, properties, status, metadata |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
pageId | string | Yes | The ID of the page to update |
properties | object | Yes | The properties to update on the page (key-value pairs) |
archived | boolean | No | Whether to archive the page (default: false) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | Whether the page was updated successfully |
data | object | No | Notion API response data |
exports | object | No | Exported values from the action |
Examples
json{ "type": "notion-update-page", "payload": { "pageId": "example-pageId", "properties": {} }, "children": [], "connector": { "type": "pipedream:notion", "id": "conn_pipedream_notion" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/notion-update-page/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "pageId": "example-pageId", "properties": {} }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
