loader

For Loops in Deluge Script

For this tutorial in video form, click here Let’s now talk about loops. When we have a list in Deluge, we might want to do something with that list. Example List Here is an example list, but your list could be anything: a list of products, names, or anything related to your business. We can […]

Debugging Zoho CRM Custom Functions

For this tutorial in video form, click here In this article, we’ll go through some debugging tips when writing custom functions. Oftentimes, you’ll get mysterious errors that will be difficult to understand. Consider this example: When we save & execute, we get this weird error: It’s strange because there’s nothing at line 0. Quite often […]

zoho.crm.updateRecord with API v2

For this tutorial in video form, click here Let’s go over updating existing records in Zoho CRM. The Process Check out this previous example we had for creating a record: To update an existing record, we use zoho.crm.updateRecord instead: The main difference from createRecord is that we specify the ID of the record we want […]

Serverless Custom Functions in Zoho CRM

For this tutorial in video form, click here In this article, we’re going to show you how to make serverless custom functions in Zoho CRM. The Process We’ll start off by clicking setup in our CRM (it’s the tool icon in the top right corner). Then, we’ll go to Developer Space>Functions. What function are we […]