Create note
org.intentschema.productivity.notes.note.create.v1
JSON: bare · @sha256:a7f916bfd1dd…
Hash: sha256:a7f916bfd1dde11b77a24a9196ea6e68ccfa4ca3664c95725ae4e4a2abe5b4b6
Create a new note in a notes app or knowledge base.
Payload
| Field | Type | Description |
target * | Target | |
object * | object | |
idempotency_key | string | |
object
| Field | Type | Description |
title * | string | |
body | string | Note body — Markdown by convention. |
tags | string[] | |
folder | string | Optional folder/parent path or container id. |
Result
| Field | Type | Description |
external_id * | string | |
created_at * | string (date-time) | |
url | string (uri) | |
Examples
quick note
{
"target": {
"system": "notion"
},
"object": {
"title": "Standup notes 2026-04-22",
"body": "- Shipped X\n- Blocked on Y\n",
"tags": [
"standup"
]
}
}
Profiles