Deluge function getRecordById is missing all Multiselect fields
I'm running a custom function inside a CRM Contact Workflow. I'm able to use getRecordById to get the contact fields, but all of the Multiselect fields are missing in the result. All other fields are present. The code is simple:
- contactDetails = zoho.crm.getRecordById("Contacts",contactId);
- email = contactDetails.get("Email"); // returns the correct email
- lifetimeProducts = contactDetails.get("Lifetime_Products_Owned"); // returns null, as does every other Multiselect field