I have a custom function that was working just fine until this week. The workflow is set to create a task for a user whenever they receive an email from a contact:
Workflow
Runs a Function:
user = zoho.crm.searchRecords("Contacts",emailAdd);
taskInfo = Map();
taskInfo.put("Subject","Email Received From " + contactName);
Reason for failure is: Internal Process Failure. When I run a test execution the function works, but when I activate it it fails every time. Again, this was working fine until the last couple of days.