通过php使用api获取salesforce联系人详细信息

时间:2013-05-23 07:15:12

标签: php api salesforce

我想了解详情如下:

1) SalesForce API details to fetch user information from extension number
2) SalesForce API details to fetch Contact information from dialed number
3) SalesForce API details to log calls into SalesForce

那么有人能告诉我call api的要求是什么?像任何帐户创建,用户名和密码一样?

1 个答案:

答案 0 :(得分:1)

for(1)& (2)它们是简单的查询调用,使用您运行查询的soaprest api,

  1. select id, name, {whatever} from user where phone = 'the phone #'
  2. select id, name, {whatever} from contact where phone = 'the phone #'
  3. 对于(3),您将创建一个新记录,通常是一个任务,其中填充的相关字段包括whoId字段,该字段将是被呼叫者的contactId。

    您可能会发现使用SoqlXWorkbench之类的通用架构/查询工具作为发现辅助工具。