使用api从Zoho crm获取潜在客户信息

时间:2017-07-19 23:03:13

标签: php zoho

我需要从crm获取一个潜在客户的信息,使用其余的api和php如何才能完成这个?

我正在使用下面的代码,但是它给了我一个错误," 4500问题在处理请求时出现",它在一个名为index的php文件中,并使用wamp来运行它,是这个或者是什么不见了?

$authtoken = 'mytokennumber';

$name = 'client name';

$xmlData='<Lead><FirstName>'.$name.'</FirstName></Lead>';

$ch = curl_init('https://crm.zoho.com/crm/private/xml/Leads/insertRecords?');
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_POST, 1);

$query = "newFormat=1&authtoken={$authtoken}&scope=crmapi&xmlData={$xmlData}"; 
curl_setopt($ch, CURLOPT_POSTFIELDS, $query); 
$response = curl_exec($ch); 
curl_close($ch);
print_r($response);
你可以帮帮我吗?感谢

0 个答案:

没有答案