Clear Lookup field in Zoho CRM using Custom Function/Deluge

Clear Lookup field in Zoho CRM using Custom Function/Deluge

Hi there,

Can you please advise how I can clear a Lookup Field in Zoho CRM using a Custom Function/Deluge?

I've tried the following without any luck (in this example, I'm trying to clear the "Account" field of a Contact record):
  • zoho.crm.updateRecord("Contacts",input.contactID.toString(),{ ("Account_ID") : null, ("Account") : null });
  • zoho.crm.updateRecord("Contacts",input.contactID.toString(),{ ("Account_ID") : 0, ("Account") : 0 });
  • zoho.crm.updateRecord("Contacts",input.contactID.toString(),{ ("Account_ID") : "", ("Account") : "" });
Any ideas?


Cheers,

Jamie.