如何通过在get_entry_list API调用的查询参数中提供电子邮件来获取列表?

时间:2013-02-16 02:23:32

标签: php sugarcrm

我正在尝试更新Sugar CRM中的特定潜在客户。我不知道这个潜在客户的ID,所以我试图通过使用电子邮件地址或名称调用get_entry_list来检索潜在客户ID。我想使用查询并指定电子邮件地址或名称,如下所示:

    'query' => "first_name = \"Bob\"",

我甚至尝试过:

    'query' => "first_name LIKE \"%Bob%\"",

    'query' => "email1 LIKE \"%bob@abc.com\"",

但我得到了这个结果:

Database failure. Please refer to sugarcrm.log for details.

...... sugarcrm.log 里面没有任何东西:(


这是完整的代码:

$get_entry_list_parameters = array(

//session id
'session' => $session_id,

//The name of the module from which to retrieve records
'module_name' => 'Leads',

//The SQL WHERE clause without the word "where".
'query' => "first_name = \"Bob\"",

//The SQL ORDER BY clause without the phrase "order by".
'order_by' => "",

//The record offset from which to start.
'offset' => '0',

//Optional. A list of fields to include in the results.
'select_fields' => array(
    'id',
    'name',
    'email1',
),

'link_name_to_fields_array' => array(
),

//The maximum number of results to return.
'max_results' => '10',

//To exclude deleted records
'deleted' => '0',

//If only records marked as favorites should be returned.
'Favorites' => false,
);

$get_entry_list_result = call('get_entry_list', $get_entry_list_parameters, $url);

echo '<pre>';
print_r($get_entry_list_result);
echo '</pre>';

编辑:我正在使用v4_1 REST API

2 个答案:

答案 0 :(得分:1)

检查一个正在运行的示例&gt; http://urdhva-tech.blogspot.in/2013/02/rest-api-example.html

希望你觉得它很有用。

另外,通过查看$ get_entry_list_parameters数组,它看起来应该可以正常工作。

答案 1 :(得分:1)

从第78行开始查看service / v4 / SugarWebServiceUtilv4.php。在那里设置断点或记录生成的查询($ where)。也许这可以帮助你找出原因。