我正在尝试使用以下API在Highrise CRM中获取联系人:
/people/search.xml?email=emailID
但结果与我要求的联系人的电子邮件无关。我是不是漏掉了什么?
发布于 2014-04-10 23:50:09
看看这里的API文档:https://github.com/basecamp/highrise-api/blob/master/sections/people.md#search-people
看起来您的查询字符串与条件格式不匹配。
此外,尝试运行curl来查看响应并发布它,这可能有助于澄清。:)
发布于 2014-04-11 15:23:40
有效的API:
/people/search.xml?criteriaemail=emailID
https://stackoverflow.com/questions/22991824
复制相似问题