2

我正在寻找一种方法来创建页面提醒作为提及或在数据库页面的日期属性中。API还有可能吗?

在此示例中,我想创建一个带有 Date 属性提醒的新 daabse 条目。

return await require("@pipedreamhq/platform").axios(this, {
  method: "POST",
    url: `https://api.notion.com/v1/pages/`,
    headers: {
      "Authorization": `Bearer API_KEY_HERE`,
      "Content-Type": "application/json",
      "Notion-Version": "2021-05-13"
    },
    data: {
      "parent": { "database_id": "DB_ID_HERE" },
      properties: {
        "Day": {
              "title": [
                {
                  "type": "text",
                  "text": {
                    "content": "Title"
                  }
                }
              ]
            },
        "Date" : { "date" : { "start": "DATE_HERE } },
      }
    }
})

4

1 回答 1

0

Notion API 目前不支持提醒(或通知)。

于 2021-07-09T01:40:58.190 回答