请帮我介绍如何创建自定义函数以从zoho crm中的自定义模块中搜索记录。
我是zoho crm的新手,所以我不知道如何为此编码。 工作流程在Event create上触发。
在自定义模块中,LEADID被插入到潜在客户ID字段中,我想从自定义模块中按潜在客户字段值搜索记录。 在功能中,我传递了搜索记录的潜在客户ID。 下面是我创建的示例代码,但它不起作用。
Lead_id=input.LeadID.toString();
Event_id=input.EventID.toString();
rec = zoho.crm.getRecordById("Events",input.EventID);
resp = zoho.crm.searchRecords("CustomModule1","Lead Id",input.LeadID);
for each ele in resp
{
mp=map();
mp.put("Event Created Time",rec.get("Created Time"));
contactId=ele.get("CUSTOMMODULE1_ID");
updateResp = zoho.crm.updateRecord("CustomModule1",contactId,mp);
}
答案 0 :(得分:0)
以下是示例API方法,即使用潜在客户ID从潜在客户模块获取记录的代码
$auth = "*************************";// Auth Keys
$id="****************";// Record Id
////////////get data by Id from Zoho Lead Module ///////////
$get_url = "https://crm.zoho.com/crm/private/json/Leads/getRecordById?";
$get_query = "authtoken=".$auth."&scope=crmapi&id=".$id."";
$get_curl = curl_init();
curl_setopt($get_curl, CURLOPT_URL, $get_url);
curl_setopt($get_curl, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($get_curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($get_curl, CURLOPT_TIMEOUT, 60);
curl_setopt($get_curl, CURLOPT_POST, 1);
curl_setopt($get_curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($get_curl, CURLOPT_POSTFIELDS, $get_query);
$get_response = curl_exec($get_curl);
$jfo = json_decode($get_response);
echo "<pre>";
curl_close($get_curl);
print_r($jfo);