Notion: Append Block
Append content to an existing Notion page. Use this to add new paragraphs, logs, or updates to existing pages. Supports markdown formatting. Ideal for: activity logs, running notes, status updates, append-only records.
Catalog action Integrations pipedream:notion
Append content to an existing Notion page. Use this to add new paragraphs, logs, or updates to existing pages. Supports markdown formatting. Ideal for: activity logs, running notes, status updates, append-only records.
At a Glance
| Field | Value |
|---|---|
| Action ID | notion-append-block |
| Category | Integrations |
| Connector | pipedream:notion |
| Requires gas | No |
| Funds movement | None declared |
| Tags | pipedream, integration, oauth, notion, productivity, write, append, logging, update, content |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
pageId | string | Yes | The ID of the page to append content to |
content | string | Yes | The content to append to the page (as paragraph blocks) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | Whether the content was appended successfully |
data | object | No | Notion API response data |
exports | object | No | Exported values from the action |
Examples
json{ "type": "notion-append-block", "payload": { "pageId": "example-pageId", "content": "example-content" }, "children": [], "connector": { "type": "pipedream:notion", "id": "conn_pipedream_notion" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/notion-append-block/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "pageId": "example-pageId", "content": "example-content" }}'
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.
