Explore more
Tools

Tools

20min

Our Tools section includes several useful modules that can enhance your .

Tools menu


Triggers

Basic trigger

Allows you to create a custom trigger and define its input bundles.

Basic trigger


Create custom bundles by adding array items. The array consists of the name-value pairs.

For example, you can use this tool for contacts or any other list that is scheduled to be sent to a specified email address (Email > Send an Email, Gmail > Send an Email modules), or as a simple reminder to be triggered whenever it is necessary.

Actions

Get multiple variables

Retrieves values that were previously created by the Set multiple variables module within a single operation.

Get multiple variables


The main benefits of the Set multiple variables module are:

  • one Get multiple variables module can replace a whole series of Get variable modules.
  • one Get multiple variables module consumes just a single operation.

Get variable

Retrieves a value that was previously created by the Set variable module.

Get variable


Note that this module can read a variable that was set anywhere in the . The only requirement is that the Tools > Set Variable module is executed before (in time) the Tools > Get Variable module. See the documentation for the Router module for information about the order in which routes are processed.

Get variable example


Increment function

See our template Controlled distribution of data flow for an example of the increment function tool.

Returns a value incremented by 1 after each module's operation. It is possible to configure the module to reset the value.

Increment function


One of this tool's uses is to implement a round robin assignment of tasks to users in a group. The algorithm chooses the assignees from a group in some rational order, usually going from the top to the bottom of a list and then repeating until finished (like you would deal a deck of cards).

The following sends an email to the first recipient after every odd run, and to the second recipient after every even run.

Increment function scenario

1

Configure the module to never reset the value:

Increment function




2

Add a router.

3

Set the first condition after the router:

Odd - use the mod math function set equal to 1.

61d5a3ca16a69.gif
61d5a3ca16a69.gif


Do not forget to change the Equal to operator from the default Text operator to the Numeric operator.

Set numeric operator - odd

4

Set the second condition after the router.

Even – use the mod math function that equals 0:

Set numeric operator - even


Set multiple variables

Creates multiple variables that can be mapped by other modules in the route or by the Get Multiple Variables module for every route in the within a single operation.

Set multiple variables


The main benefits of the Set multiple variables module are:

  • one Set multiple variables module can replace a whole series of Set variable modules
  • one Set multiple variables module consumes just a single operation





Variables

Add multiple variables you want to set.

  • Variable name: Enter the variable name. This name will be displayed when mapping the variable in other modules.
  • Variable value: Enter the value of the variable.

Variable lifetime

One cycle : the variable is valid only for one cycle. Useful when multiple webhooks in one run are received (more webhooks = more cycles).

One execution: The variable is valid for one execution. One execution can contain more cycles.

Set variable

Creates a variable that can be mapped by other modules in the route or by the Get variable module for every route in the .

Set variable


Field

Description

Variable name

Enter the variable name. This name will be displayed when mapping the variable in other modules.

Variable lifetime

One cycle : the variable is valid only for one cycle. Useful when multiple webhooks in one run are received (more webhooks = more cycles).

One execution: The variable is valid for one execution. One execution can contain more cycles.

Variable value

Enter the value of the variable.

Sleep

Allows you to delay the flow for up to 300 seconds (5 minutes).

Sleep


This function can be useful, for example, if you want to lower the target service server load or to simulate more human behavior when sending bulk SMS or emails.

If you wish to pause the flow for longer periods of time, we suggest splitting your into two .

  1. The first would contain the part before the pause.
  2. The second would contain the part after it.

The first would store all the necessary information in a data store together with the current timestamp. The second would periodically check the data store for records with a timestamp older than the intended delay, retrieve the records, finalize the processing of the data, and remove the records from the data store.

Aggregators

Numeric aggregator

Allows you to retrieve numerical values, then apply one of the selected functions (SUM, AVG, COUNT, MAX,...), and return the result in one bundle.

In this example, the module sums up values under the number parameter.

Number aggregator


Table aggregator

Merges values from the selected fields of received bundles into a single bundle using a specified column and row separator, allowing you to create a table.

Table aggregator


Field

Description

Source module

Select the module you want to aggregate fields from.

Aggregated fields

Select the fields from the module selected above whose values you want to aggregate into one bundle.

Column separator

Select or enter the type of separator that will separate the field value columns in the resulting bundle.

Row separator

Select or enter the type of separator that will separate the field value rows in the resulting bundle.

Group by

Define an expression containing one or more mapped items. The aggregated data will then be separated into groups with the same expression's value. Each group outputs a separate bundle containing a key with the evaluated expression and the aggregated text. By doing this, you can use the key as a filter in subsequent modules.

Text aggregator

Merges values from the selected fields of received bundles into a single bundle.

Text aggregator


You can use the text aggregator tool to insert more values (e.g. customer names or notes) into a single bundle and send an email containing all the values in the email body or the email subject.

Transformers

Compose a string

Converts any value to a string data type (text), making the mapping easier when mapping, for example, binary data.

Compose a string


Convert the encoding of the text

Converts entered input text (or binary data) to the selected encoding.

Convert encoding of the text


Field

Description

Input data

Enter the content you want to convert.

Input data codepage

Enter the input data encoding type. This is important for the binary form of data.

Output data codepage

Select the target encoding of your data.

Switch

Checks the input value for a match with the provided list of values. Returns output based on the result.

Switch


Field

Description

Input

Enter the expression you want to evaluate.

Cases

If the Input contains a value entered to the Pattern field, then the value entered to the Output field is returned. If the condition is not met, then no output is returned OR the value from the Else field (below) is returned.

When using regex patterns, make sure to adhere to the ECMAScript flavor.

Else

Enter the value that is returned when the criteria set in the Cases field is not met.