0
A
回答
0
將以下代碼修改爲您的要求。它使用SugarCRM的SOAP API。
$user_name = 'admin';
$user_password = 'admin';
$sugarcrm_url = 'http://example.com/'
$options = array(
"uri" => $sugarcrm_url,
"trace" => true
);
$offset = 0;
$limit = 100;
try {
$client = new SoapClient($sugarcrm_url.'service/v4_1/soap.php?wsdl', $options);
$response = $client->__soapCall('login',array(
'user_auth'=>array(
'user_name'=>$user_name,
'password'=>md5($user_password),
'version'=>'.01'
),
'application_name'=>'SoapTest'
));
$session_id = $response->id;
$response = $client->__soapCall('get_entry_list',array(
'session'=>$session_id,
'module_name'=>'Contacts',
'query'=>'',
'order_by'=>'contacts.last_name asc',
'offset'=>$offset,
'select_fields'=>array(),
'max_results'=>$limit)
);
print_r($response);
$response = $client->__soapCall('get_entry_list',array(
'session'=>$session_id,
'module_name'=>'Accounts',
'query'=>'',
'order_by'=>'accounts.name asc',
'offset'=>$offset,
'select_fields'=>array('id', 'name', 'email1'),
'max_results'=>$limit)
);
print_r($response);
$response = $client->__soapCall('logout',array('session'=>$session_id));
} catch (Exception $ex) {
echo $ex->getMessage();
}
相關問題
- 1. 帳戶搜索通配符 - SugarCRM
- 2. 在Sugarcrm中修改帳戶
- 3. 使用非管理員帳戶檢索Google Apps域中的用戶列表
- 4. Webservice創建帳戶,國家列表?
- 5. sugarcrm - 使用Google帳戶登錄sugarcrm應用程序
- 6. 檢索用戶帳戶
- 7. 檢索與Twitter帳戶交互的用戶列表?
- 8. 使用網絡服務檢索網絡帳戶結算餘額
- 9. 使用Javascript檢索帳戶的所有子帳戶
- 10. SUGARCRM中的聯繫人帳戶
- 11. SugarCRM帳戶和用戶表有什麼不同?
- 12. 使用ajax和php頁檢索列表
- 13. 如何使用php從外部網頁檢索ip列表?
- 14. 正在檢索用戶帳戶
- 15. 在SugarCRM的查看頁面中檢索引用的表格數據
- 16. 檢索具有特定分類的帳戶列表
- 17. 檢索帳戶-github accesstoken
- 18. 從網頁上的表(類)檢索數據在android中使用
- 19. 雲帳戶搜索索引的分頁
- 20. 檢索網址中的文件列表
- 21. 使用BCS檢索使用多個可能帳戶的數據
- 22. 檢索用戶的Google+活動列表
- 23. SugarCRM的禁用搜索頁面模塊
- 24. 從列表中檢索已過濾的用戶列表
- 25. 從webservice中檢索客戶端用戶名和計算機名
- 26. SugarCRM帳戶聯繫關係REST API
- 27. 使用RSelenium從網頁表中檢索數據
- 28. 添加從列表中檢索用戶的用戶
- 29. 保持活躍用戶列表,並在網頁主機上檢索它
- 30. 檢索喜歡網址/網頁的Facebook用戶