如何检索和创建 Toggle Heading 块?

How to retrieve and create the Toggle Heading blocks?

我想通过概念 API 创建切换标题 1-3。但是,我在 API.

中找不到正常 headers 和切换 headers 之间的区别

https://developers.notion.com/reference/block#heading-one-blocks — 此文档仅列出 "type": "heading_1",没有任何其他属性来区分切换 header 与正常 (non-toggle) header.

当我通过 API 获得切换 header 块时,我也看不到任何表明 header 是切换标题的属性:

是否可以通过 API 创建切换标题?如果是那么怎么办?

看起来 API 本身实际上支持创建带有 children 的标题,这将使 header 成为一个开关 header。

只是我正在使用的包装 JVM 库不支持将 children 设置为 HeadingOne、HeadingTwo、HeadingThree 块。

我已经为库添加了一个问题,请参阅 https://github.com/seratch/notion-sdk-jvm/issues/45

通过纯 API 的工作示例(将 YOUR_PAGE_ID 替换为您的概念页面 ID)并将 NOTION_API_TOKEN 设置为您的概念令牌:

curl -X PATCH 'https://api.notion.com/v1/blocks/YOUR_PAGE_ID/children' \
  -H 'Authorization: Bearer '"$NOTION_API_KEY"'' \
  -H "Content-Type: application/json" \
  -H "Notion-Version: 2022-02-22" \
  --data '{
  "children": [
    {
      "object": "block",
      "type": "heading_2",
      "heading_2": {
        "rich_text": [{ "type": "text", "text": { "content": "Heading 2 from script (try 3)" } }],
        "children": [
          {
            "object": "block",
            "type": "paragraph",
            "paragraph": {
              "rich_text": [
                {
                  "type": "text",
                  "text": {
                    "content": "Child in heading 2."
                  }
                }
              ]
            }
          }
        ]
      }
    }
  ]
}'