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. |
Planned / unsupported fields
| Field | Reason |
|---|
dueDate | Requires a validated database property mapping. |
labels | Requires a validated database property mapping. |
priority | Requires a validated database property mapping. |
project | Requires a validated database property mapping. |
section | Requires a validated database property mapping. |
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 | Not written through the current manual handoff. |
labels | Not written through the current manual handoff. |
priority | Not written through the current manual handoff. |
project | Not written through the current manual handoff. |
section | Not written through the current manual handoff. |
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 | Not written through the current Share Sheet workflow. |
labels | Not written through the current Share Sheet workflow. |
priority | Not written through the current Share Sheet workflow. |
project | Not written through the current Share Sheet workflow. |
section | Not written through the current Share Sheet workflow. |
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"
]
}