1
我試圖通過位於聯繫人字段中的電子郵件字段(使用restful API URL)過濾我的podio應用中的條目。當我拉回來的數據我看到郵件被深深嵌套在接觸領域對象是這樣的:通過podio restful API中的聯繫方式電子郵件過濾API
{
"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": [
"[email protected]"
],
"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 /搜索? 是否有可能或者是跑道的明顯限制?