Hi,
I am using below script to insert Contacts from CRM into Zoho Creator form, it is working correctly except not inserting Zoho CRM Contact Name link . Please see below screenshot
- contactlist = zoho.crm.getRecords("Contacts");
- for each contDet in contactlist
- {
-
- insert into ContactForm
- [
- Zoho_CRM_Contact_Name_ID = contDet.get("Zoho_CRM_Contact_Name_ID")
- Email = contDet.get("Email")
- company = contDet.get("Company")
- ]
- }
Form :
Output of Script:
What I am expecting from insert Task is like below
Could any one please help me
Arfater