Route
id | notion.page.v1 |
object_type | note |
delivery_modes | api appHandoff shareSheet |
Voice examples
- Add to Notion hello this is a test
- Create a new Notion page called idea testing and add use green instead of blue
API api
automatic_create | Supported |
setup | pro, enabled, apiToken |
Writable fields
| Field | Behavior |
|---|
title | Written to the database Name title property. |
body | Written as the first paragraph block. |
dueDate | Supported by the current adapter. |
labels | Supported by the current adapter. |
priority | Supported by the current adapter. |
project | Supported by the current adapter. |
section | Supported by the current adapter. |
Planned / unsupported fields
| Field | Reason |
|---|
| No planned fields listed. |
Adapter payload
{
"endpoint": "POST https://api.notion.com/v1/pages",
"body": {
"parent": {
"database_id": "{configuredDatabaseId}"
},
"properties": {
"Name": {
"title": [
{
"text": {
"content": "{title}"
}
}
]
}
},
"children": [
{
"object": "block",
"type": "paragraph",
"paragraph": "{body}"
}
]
}
}
App handoff appHandoff
automatic_create | Not supported / requires user confirmation |
setup | pro, enabled, appInstalled |
Writable fields
| Field | Behavior |
|---|
title | Copied/opened for manual placement. |
body | Copied/opened for manual placement. |
Planned / unsupported fields
| Field | Reason |
|---|
dueDate | Supported by the current adapter. |
labels | Supported by the current adapter. |
priority | Supported by the current adapter. |
project | Supported by the current adapter. |
section | Supported by the current adapter. |
Adapter payload
{
"text": "{title}\\n\\n{body}"
}
Share Sheet shareSheet
automatic_create | Not supported / requires user confirmation |
setup | pro, enabled |
Writable fields
| Field | Behavior |
|---|
title | Shared as text. |
body | Shared as text. |
Planned / unsupported fields
| Field | Reason |
|---|
dueDate | Supported by the current adapter. |
labels | Supported by the current adapter. |
priority | Supported by the current adapter. |
project | Supported by the current adapter. |
section | Supported by the current adapter. |
Adapter payload
{
"text": "{title}\\n\\n{body}"
}
Generated schema summary
{
"id": "notion.page.v1",
"app": "Notion",
"object_type": "note",
"delivery_modes": [
"api",
"appHandoff",
"shareSheet"
],
"writable_fields": [
"title",
"body",
"dueDate",
"labels",
"priority",
"project",
"section"
]
}