Notion: Create Page
Create a new page in a Notion database or under a parent page. Use this to create documentation, notes, or structured records. Supports markdown content and custom titles. Ideal for: documentation, notes, task creation, knowledge base entries.
Catalog action Integrations pipedream:notion
Create a new page in a Notion database or under a parent page. Use this to create documentation, notes, or structured records. Supports markdown content and custom titles. Ideal for: documentation, notes, task creation, knowledge base entries.
At a Glance
| Field | Value |
|---|---|
| Action ID | notion-create-page |
| Category | Integrations |
| Connector | pipedream:notion |
| Requires gas | No |
| Funds movement | None declared |
| Tags | pipedream, integration, oauth, notion, productivity, write, documentation, notes, database, knowledge-base |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
parentId | string | Yes | The ID of the parent page or database where the new page will be created |
title | string | Yes | The title of the new page |
content | string | No | The content to add to the page (as paragraph blocks) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | Whether the page was created successfully |
data | object | No | Notion API response data |
exports | object | No | Exported values from the action |
Examples
json{ "type": "notion-create-page", "payload": { "parentId": "example-parentId", "title": "example-title" }, "children": [], "connector": { "type": "pipedream:notion", "id": "conn_pipedream_notion" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/notion-create-page/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "parentId": "example-parentId", "title": "example-title" }}'
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.
