如何从salesforce中检索所有潜在客户字段?

时间:2014-10-29 06:41:28

标签: php api salesforce

我正在使用salesforce Enterprise api在salesforce中添加潜在客户。

    $SFDCUSERNAME = "myusername";
    $SFDCPASSWORD = "mypassword!";
    $SFDCSECURITY_TOKEN = "mytoken";
    $SFDCCLIENT = "soapclient/SforceEnterpriseClient.php";
    $SFDCWSDL = "soapclient/enterprise.wsdl.xml";

require_once($SFDCCLIENT);

try {
    $mySforceConnection = new SforceEnterpriseClient();
    $myConnection = $mySforceConnection->createConnection($SFDCWSDL);
    $myLogin = $mySforceConnection->login($SFDCUSERNAME, $SFDCPASSWORD.$SFDCSECURITY_TOKEN);


}
catch(Exception $e) {
    print_r($e);
}

我可以使用api创建潜在客户。 现在,我想要检索salesforce中的潜在客户可用的所有字段(不仅是自定义字段,还包括默认/ in_built字段),并在HTML下拉字段中显示。

是否可以使用salesforce api检索潜在客户的所有字段?

1 个答案:

答案 0 :(得分:2)

经过长时间的搜索,我得到了答案,这对我有用。我在这里发帖,希望它可能对其他人有所帮助。

try {
        $mySforceConnection = new SforceEnterpriseClient();
        $myConnection = $mySforceConnection->createConnection($SFDCWSDL);
        $myLogin = $mySforceConnection->login($SFDCUSERNAME, $SFDCPASSWORD.$SFDCSECURITY_TOKEN);
        echo "<pre>";
        print_r($mySforceConnection->describeSObject('Lead'));
        echo "</pre><br>";       

    }
    catch(Exception $e) {
        print_r($e);
    }

salesforce api describeSObject()中有一个函数,它输出有关对象的完整详细信息,包括字段详细信息。

<强> REFERENCE