Notion API 如何使用 unique_id 进行过滤

问题描述 投票:0回答:1

从现在开始可以在数据库中声明 unique_id 属性。 但没有关于如何从 unique_id 搜索项目的信息

在API调用的正文中,我已经尝试过

{
  "filter": {
    "property": "Identifiant",
    "number": {
        "equals": 92
   }
 }
}

不工作 我得到了

[400] Could not find property with name or id: Identifiant
Identifiant
是我的财产的正确名称

search filter uniqueidentifier notion-api
1个回答
0
投票

根据文档,您需要通过

"unique_id"
而不是
"number"

    {
        "filter": {
            "property": "Identifiant",
            "unique_id": {
                "equals": 92
            }
        }
    }
© www.soinside.com 2019 - 2024. All rights reserved.