Insert Crm "Contacts" into Zoho Creator Form

Insert Crm "Contacts" into Zoho Creator Form

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 
  1. contactlist = zoho.crm.getRecords("Contacts");
  2. for each contDet in contactlist
  3. {

  4. insert into ContactForm
  5. [
  6. Zoho_CRM_Contact_Name_ID = contDet.get("Zoho_CRM_Contact_Name_ID")
  7. Email = contDet.get("Email")
  8. company =  contDet.get("Company")
  9. ]
  10. }

Form :




Output of Script:





What I am expecting from insert Task is like below





Could any one please help me 

Arfater