Choose where you’d like to start

Deluge Limitations

Note: The limits that are currently specified on this page may not be accurate. We are analyzing the usage of every case and are updating the limits accordingly. Once the usage analysis is thorough and definite execution limits are established, this page will be updated with the deduced new limits.

Statement Limitation

The maximum number of statements that can be executed in one function is 5000.

Note: The number of statements executed need not always be equal to the number of statements present in a function.

Case 1: for each task

Consider the following script,

 for each element in list_var 
 {
 //Statement 1
 //Statement 2
 }
 

Let us assume, the list variable - list_var has 5 elements. This conveys that the for each loop runs 5 times. So,

  • The total number of statements present is 3 (includes the for each task and the two statements within).

  • The total number of statements executed is 15 (3 statements are executed 5 times).

The statement limitation imposed, accounts only the number of statements executed.

Case 2: sendmail and invokeUrl tasks

The sendmail and invokeUrl tasks require more than one line of script to perform their respective functions. However, on execution, the task as a whole is treated as one statement.

Consider the following example,

 sendmail 
 [
 From:  zoho.adminuserid
 To:  "john@zylker.com"
 Subject:  "Reminder"
 Message:  "Hello, this is to remind you that your invoice is due next week. Please let me know if you have any questions. Thank you."
 ]
 

In the above script, the total number of statements executed is 1.

Recursive Function Limitation

The maximum number of function calls that can be executed within one function is 75.

Task Limitations

TaskLimit (per day)

Email

The maximum number of emails that a user can send using sendmail task is 500.

Webhook

The maximum number of webhook tasks (invokeUrl, getUrl, and postUrl) that a user can execute is 2000.

Integration tasks

The maximum number of integration tasks that a user can execute is 2000.

  • Sendmail Task Limitation
  1. The following restrictions are imposed on the sendmail task to avoid spam emails.

    • In services other than Zoho Cliq, the From: address should only be specified as zoho.adminuserid, or zoho.loginuserid*, or a verified email address. Otherwise, the sendmail task will fail.

      FromToResult
      zoho.adminuserid, zoho.loginuserid (*only when the logged in user is not a customer portal user), or verified email address
      (or)
      variable that contains any of these
      Any email addressMail will be sent
      email address other than zoho.adminuserid, zoho.loginuserid, or verified email addressAny email addressError while saving
      variable that contains email address other than zoho.adminuserid, zoho.loginuserid, or verified email addressAny email addressError during run time
    • In Zoho Cliq, the From: address should only be specified as zoho.loginuserid, or a verified email address. Otherwise, the sendmail task will fail.

      FromToResult
      zoho.loginuserid or verified email address
      (or)
      variable that contains any of these
      Any email addressMail will be sent
      email address other than zoho.loginuserid or verified email addressAny email addressError while saving
      variable that contains email address other than zoho.adminuserid, zoho.loginuserid, or verified email addressAny email addressError during run time
    • The maximum size of attachments that can be sent using a sendmail task is 15 MB.
  • InvokeUrl Task Limitation
  1. The maximum content length of the response that can be returned by an invokeUrl task is 5 MB.

Time Zone Limitations

The supported time zone database names that can be used in the toString and toTime built-in functions, to convert date and time between time zones can be found here.

Get Started Now

Execute