在 podio restful API 中按联系人字段电子邮件过滤

filter by contact field email in podio restful API

我正在尝试通过位于联系人字段中的电子邮件字段(使用 restful API URLs)过滤跑道应用程序中的条目。当我拉回数据时,我看到电子邮件深深嵌套在联系人字段对象中,如下所示:

{
      "type": "contact",
      "field_id": 80911192,
      "label": "Personal Information",
      "values": [
        {
          "value": {
            "user_id": null,
            "space_id": 2873853,
            "type": "space",
            "image": null,
            "profile_id": 176014555,
            "org_id": null,
            "phone": [
              "4045559996"
            ],
            "link": "google.com",
            "mail": [
              "somedudesemail@crap.com"
            ],
            "external_id": null,
            "last_seen_on": null,
            "name": "some dude"
          }
        }
      ],
      "config": {
        "settings": {
          "type": "space_contacts",
          "valid_types": [
            "space"
          ]
        },
        "mapping": null,
        "label": "Personal Information"
      },
      "external_id": "personal-information"
    },

您如何通过 URL API 深度嵌套的子字段来 filter/search? 这可能还是跑道的明显限制?

抱歉,跑道目前不支持对space个联系人进行深度嵌套过滤。你仍然可以在你身边过滤:)