From c1dab26f66d1a7c622cada094242b909a444a46c Mon Sep 17 00:00:00 2001 From: Selig Date: Sun, 15 Mar 2026 19:59:33 +0800 Subject: [PATCH] Add linked view of database operation to notion skill Adds curl example for creating linked database views using link_to_page block type with database_id. Co-Authored-By: Claude Opus 4.6 --- skills/notion/SKILL.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/skills/notion/SKILL.md b/skills/notion/SKILL.md index a7203df..34c1862 100644 --- a/skills/notion/SKILL.md +++ b/skills/notion/SKILL.md @@ -117,6 +117,27 @@ curl -X POST "https://api.notion.com/v1/databases" \ }' ``` +**Create linked view of database (embed existing database in another page):** + +```bash +curl -X PATCH "https://api.notion.com/v1/blocks/{target_page_id}/children" \ + -H "Authorization: Bearer $NOTION_KEY" \ + -H "Notion-Version: 2025-09-03" \ + -H "Content-Type: application/json" \ + -d '{ + "children": [ + { + "object": "block", + "type": "link_to_page", + "link_to_page": { + "type": "database_id", + "database_id": "xxx" + } + } + ] + }' +``` + **Update page properties:** ```bash