Trigger Zoho CRM Workflows on Record Creation with Deluge

Trigger Zoho CRM Workflows on Record Creation with Deluge

When creating a record in Zoho CRM using a Deluge function, the workflows are not triggered by default. If you want to trigger them, there is a parameter that should be added: wfTrigger=true.
Here is an example:
mapContact = Map();
mapContact.put("Last_Name","ContactName");
mapContact.put("Email","info@ScaleUpProject.ch");
mapWorkflow = Map();
mapWorkflow.put("wfTrigger","true");
Response = zoho.crm.createRecord("Contacts", mapContact, mapWorkflow);

>>> More information at info@ScaleUpProject.ch.
    • Related Articles

    • Compare New and Old Values in Zoho Creator Form

      When a user edits a record in a form of a Zoho Creator application, we sometimes need to compare the new values entered by the user with the old values that were existing before the user made changes. Using this comparison, we can adapt the behaviour ...
    • Get the Day of the Week from a Date in Zoho Creator

      If you need to get the day of the week from a specific date, you can use the text function toString("EEEE"). For instance, let's say you have field in a form named "Shipping_Date". The value in it is "01.01.2021" (1 January 2021). The function ...