Blog

Pause a Deluge code for 'X' seconds

12/11/2023 11:20 PM - By Jesus Sosa - Comment(s)
Sleep can be used in a Node JS function, such as below
  1. /**

    * author: vincent.balfe@cloud-connect.ie

    * @param seconds: literal - to be converted to ms

    * @return JSON IO - SUCCESS or FAIL

    */

    module.exports = async ...

Create an HTML Table in Zoho Creator Using Deluge and Notes

11/30/2023 09:19 PM - By Jesus Sosa - Comment(s)

In a Zoho Creator application, an HTML table is a helpful way to display a list, such as appointments, inventory, or contacts to external users. Clickable links and buttons can be included in the table rows to add navigation functionality, like clicking the email link to open an email client, or an ...

Automatically create a project when deal is won (Zoho Projects and CRM)

11/30/2023 03:31 PM - By Jesus Sosa - Comment(s)

Pre-requisites

1.  The deals layout has to be ready, with all fields matching the ones in Zoho Projects. 

2.  The project layout has to be ready as well, matching Zoho CRM fields. 

3.  A template in Zoho Projects has to be created. 

 

Part 1: Adding a new connectio...

Updating record(s) in Zoho Creator via API without triggering Workflows and/or Schedules

11/30/2023 03:21 PM - By Jesus Sosa - Comment(s)
  1. head = Map();
  2. head.put("environment","development");
  3. skiList = List();
  4. skiList.add("all");
  5. mapp = Map();
  6. mapp.put("Single_Line","check");
  7. datta = Map();
  8. datta.put("data",mapp);
  9. datta.put("skip_workflow",{"all"});
  10. var = invokeurl
  11. [
  12. ...