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