我正在尝试使用 SugarCRM 的旧 REST API 提取个人计费记录和一些特定字段。我正在开发 SuiteCRM,他们使用相同的旧 REST API 调用。我有另一个与此类似的 foreach 确实可以正常工作。唯一的问题是这个只会返回请求的信息,而不是我在 link_name_to_fields_array 中调用的关系。
提前致谢。如果需要更多信息,请告诉我。
我在这里按照这个例子
我的代码如下
foreach ( $uids as $uid ) {
//retrieve records -----------------------------------
$get_entries_parameters = array(
//session id
'session' => $session,
//The name of the module from which to retrieve records
'module_name' => 'fs_payments',
//An array of SugarBean IDs
'ids' => array(
$uid
),
'query' => "",
'order_by' => "",
'offset' => "0",
'link_name_to_fields_array' => array(
array(
'name' => 'fs_billing_fs_payments_1',
'value' => array(
'first_name',
'qb_studentid'
),
),
),
);
刚刚做了一个 API 调用来获取所有链接,我确实确认了链接名称应该是它应该是什么,并且没有理由它应该返回一个空数组。
Linked Fields for fs_payments
fs_billing_fs_payments_1
[name] -> 'fs_billing_fs_payments_1'
[type] -> 'link'
[relationship] -> 'fs_billing_fs_payments_1'
[module] -> 'fs_billing'
[bean_name] -> 'fs_billing'
有没有人有比这更好的例子(也如下所示),因为我认为这不是很有帮助,因为 CRM 中的真实关系/链接具有诸如“fs_billing_fs_payments_1”之类的名称,并且似乎无法像示例所示那样工作。
$get_entries_parameters = array(
//session id
'session' => $session_id,
//The name of the module from which to retrieve records
'module_name' => 'Accounts',
//An array of record IDs
'ids' => array(
'14b0c0ca-3ea2-0ee8-f3be-50aa57c11ee7',
),
//The list of fields to be returned in the results
'select_fields' => array(
'name',
'billing_address_state',
'billing_address_country'
),
//A list of link names and the fields to be returned for each link name
'link_name_to_fields_array' => array(
array(
'name' => 'email_addresses',
'value' => array(
'email_address',
'opt_out',
'primary_address'
),
),
),
//Flag the record as a recently viewed item
'track_view' => true,
);