在我的Zimbra对REST API的查询中,我想获得仅与联系人姓名匹配的元素:
http://zimbra.server.com/home/plinard/contacts?fmt=xml&query=(taichimaro)
但是,即使Zimbra发现taichimaro是函数或phoneNumber,它也会返回每个联系人,那么如何告诉他我想搜索lastName而不是所有字段?
日Thnx
答案 0 :(得分:1)
这是如何为一个字段做的:
示例:LastName
http://zimbra.server.com/home/plinard/contacts?fmt=xml&query=(FIELD[lastname]:taichimaro)
示例:公司
http://zimbra.server.com/home/plinard/contacts?fmt=xml&query=(FIELD[company]:stackoverflow)
这是一个显示所有属性的链接: 希望它可以帮助每个人:)