如何使用REST API从sugarcrm中的记录插入/检索图像

时间:2015-07-19 03:01:49

标签: php rest sugarcrm

如何从suitecrm中的记录插入和检索图像。我使用以下过程,但没有上传图像。我在详细视图中看到了no_image。

$contents = file_get_contents('1436568236500.jpg');
$set_entry_list_parameters = array(
    'session' => $login_result->id,
    'module_name' => 'WBUR_Vehicle',
    'name_value_list' => array(
        array(
            'name' => 'id',
            'value' => '376e1f17-d797-b629-92cc-558f28228524'
        ),
        array(
            'name' => 'front_left_image_c',
            'value' => base64_encode($contents)
        )
    )
);
$get_entry_list_result = call('set_entry', $set_entry_list_parameters, $url);

另外,如何检索图像?

0 个答案:

没有答案