Explore more
Functions

Custom functions

15min

This feature is available to Enterprise customers.

Custom functions allow you to enhance the built-in data transformation capabilities available in the designer.

Custom functions are created using JavaScript.

ļ»æ supports the infrastructure and system behavior that takes care of managing and using custom functions. However, our customer care team cannot provide support on how to write and debug your own custom functions.

Create and manage custom functions

You create and manage custom functions in the Functions section.

Custom functions belong to a team. All users with the Team Member role can view and use custom functions. To create and edit custom functions, you need to have the Team Admin role.

Functions overview
ļ»æ

To create a new custom function:

1

In the left sidenav, click Functions.

2

Click + Add a function.

3

Enter a name and description. The name and description will appear in the list of functions available in the scenario designer.

Add custom function
ļ»æ
4

Click Save.

5

Write the code of the function. Use the keyword return to define the return value.

Write a function
ļ»æ
6

Click Save.

When you save the function for the first time, it immediately becomes available in the scenario designer. Custom functions are marked with an icon to distinguish them from the built-in functions.

Basic structure of custom functions

The structure of custom functions reflects the structure of regular JavaScript functions. Each function must contain the following:

  • Function header - the name of the function and the parameters it accepts.
  • Function body enclosed in curly brackets.
  • Exactly one return statement.

Supported languages

Custom functions support JavaScript ES6. No 3rd party libraries are supported.

The code runs on 's back end. This means that we do not support functionality that only makes sense in the context of writing browser-executed JavaScript.

Validation of custom functions

ļ»æ does not validate the code of your functions. If there are errors in your code, they will appear as errors in the execution of scenarios that use these functions. Invalid functions will cause your scenarios to fail.

Limitations of custom functions

The following limits apply to all custom functions that you create:

  • A single custom function can't run for more than 300 milliseconds.
  • The code of a custom function cannot have more than 5000 characters.
  • Functions must be synchronous. You can't run asynchronous code in your functions.
  • You can't make HTTP requests from your functions.
  • You can't call other custom functions from inside of a custom function.
  • You can't use recursion in your custom functions.
  • In order to use a custom variable with an iterator, you need to:
    • Set the value with the custom function in a Set Variable module before the Iterator.
    • Map the output of the Set Variable to the Iterator.

Custom functions version history

Every time you save a custom function, the system creates a new history record. This allows you to compare versions and revert your function to a previous version.

Function history
ļ»æ

Select a history record to compare the function with the previous version. You can only compare two consecutive versions.

Click Restore this version to revert to the version that you're currently viewing. This creates a new version of the function with the content of the restored version.

Work with dates inside custom functions

Custom functions are executed on 's servers. Therefore, whenever you work with dates inside a function, the dates will take into account the time zone set for your organization.

Call built-in functions from inside of your custom functions

You can use 's built-in functions in your custom function code.

Built-in functions are available as methods of the iml object.

The following example uses the Length built-in function.

Text
ļ»æ

Debug custom functions

You can execute your custom function code in the debug console, which is located under the code editor.

Delete custom functions

You can delete your custom functions in the list in the Functions section.

Delete function
ļ»æ

Before you delete a function, click Edit next to it and then switch to the Scenarios tab. Here, you can check in which scenarios the function is used.

Before deleting a function
ļ»æ

When you delete a function that is used in a scenario, the scenario will fail to execute on its next run.

The scenario that uses the deleted function will fail with the following error message:

Failed to map '<field name>': Function '<function name>' not found!

Examples

Hello world

Returns the string "Hello world."

Text
ļ»æ

Count the number of working days in a month

Calculates how many working days there are in the month specified by the month's number and a year in the function's arguments. Does not take into account local holidays.

Text
ļ»æ

Calculate the number of days between two dates

Calculates the number of days between two dates passed to the function as arguments.

Text
ļ»æ

Randomization: return a random greeting from an array of greetings

Accepts an array as an argument. Returns a random item from the array.

Text
ļ»æ

ļ»æ