【发布时间】:2016-12-16 03:33:12
【问题描述】:
我正在尝试通过位于联系人字段中的电子邮件字段(使用 restful API URL)过滤我的播音应用程序中的条目。当我拉回数据时,我看到电子邮件深深嵌套在联系人字段对象中,如下所示:
{
"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 过滤/搜索? 有没有可能,或者这是一个明显的限制?
【问题讨论】:
标签: rest api restful-url podio