1

有没有办法通过SugarCRM Pro的REST API获取当前模块记录所属的团队列表?

我已经尝试get_entry_list通过使用“团队”传递关系数组 - 这将返回空数组。

它应该是与get_user_team_id特定模块类似的功能。

我也试过get_relationships方法,但也没有运气。

我的猜测是因为 Teams 关系是 Link 类,而不是 Link2 作为所有其他模块。

4

2 回答 2

0

为了检索团队,我相信您需要执行以下操作:

1) 使用 get_entry_list 检索您的记录,确保返回 team_set_id 字段。2)一旦你有了team_set_ids,你可以对模块'TeamSets'进行另一个get_entry_list调用,过滤查询参数中的那些id。然后,您可以使用“link_name_to_fields_array”参数返回团队集中的各个团队。

下面是一个例子

<?php

$url = "http://sugar_url/service/v4_1/rest.php";
$username = "admin";
$password = "password";

//function to make cURL request
function call($method, $parameters, $url)
{
    ob_start();
    $curl_request = curl_init();

    curl_setopt($curl_request, CURLOPT_URL, $url);
    curl_setopt($curl_request, CURLOPT_POST, 1);
    curl_setopt($curl_request, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
    curl_setopt($curl_request, CURLOPT_HEADER, 1);
    curl_setopt($curl_request, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($curl_request, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl_request, CURLOPT_FOLLOWLOCATION, 0);

    $jsonEncodedData = json_encode($parameters);

    $post = array(
        "method" => $method,
        "input_type" => "JSON",
        "response_type" => "JSON",
        "rest_data" => $jsonEncodedData
    );

    curl_setopt($curl_request, CURLOPT_POSTFIELDS, $post);
    $result = curl_exec($curl_request);
    curl_close($curl_request);

    $result = explode("\r\n\r\n", $result, 2);
    $response = json_decode($result[1]);
    ob_end_flush();

    return $response;
}

//login --------------------------------------------

$login_parameters = array(
    "user_auth"=>array(
        "user_name"=>$username,
        "password"=>md5($password),
        "version"=>"1"
    ),
    "application_name"=>"RestTest",
    "name_value_list"=>array(),
);

$login_result = call("login", $login_parameters, $url);

/*
echo "<pre>";
print_r($login_result);
echo "</pre>";
*/

//get session id
$session_id = $login_result->id;

//get list of records --------------------------------

$get_entry_list_parameters = array(

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

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

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

    //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',
    ),

    /*
    A list of link names and the fields to be returned for each link name.
    Example: 'link_name_to_fields_array' => array(array('name' => 'email_addresses', 'value' => array('id', 'email_address', 'opt_out', 'primary_address')))
    */
    'link_name_to_fields_array' => array(
        array(
            'name' => 'teams',
            'value' => array(
                'id',
                'name'
            ),
        ),
    ),


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

    //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>';

?>
于 2013-06-14T15:38:13.503 回答
0

是的。在您的请求中指定 team_name 字段:

https://xxx.sugarondemand.com/rest/v10/Accounts/7e785902-ff39-4a54-87a4-e0d38b6b6ed1?&fields=name,team_name

回复:

{
   "id": "7e785902-ff39-4a54-87a4-e0d38b6b6ed1",
   "name": "15527-1",
   "date_modified": "2016-11-28T12:05:17-05:00",
   "team_name":    [
            {
         "id": "5272c830-5339-11e6-9195-06ef03a1f4b3",
         "name": "Team1",
         "name_2": "",
         "primary": true
      },
            {
         "id": "370d8fe4-e431-79fb-ec42-5565ecba3187",
         "name": "Web Service",
         "name_2": "CRM",
         "primary": false
      }
   ],
   "_acl": {"fields": {}},
   "_module": "Accounts"
}
于 2016-11-30T14:05:51.327 回答