Key concepts
Apps & modules

Types of modules

27min

In , a module is a building block you use to create a . Think of it as bricks that you put together to automate your processes.

Each module performs a particular action, such as retrieving data from a service, creating or updating a record, downloading a file, or searching for specific data based on certain conditions. For example, your can have three modules: one module watches for new customer data in a CRM, the second module converts the data into another format, and the last module sends that information to a different service.

You can find all available modules in the app list when selecting a specific app in the editor.

Document image
ļ»æ

Understanding each module type helps you navigate more easily, build advanced , and optimize operationsļ»æ while reducing costs.

In this article, you'll discover the different types of modules in and how to use them in your . If you're an advanced user, be sure to check out the section on tips and examplesļ»æ for more in-depth insights.

Triggers, Searches, Actions, and Universal modules

You can categorize modules into four groups depending on what they do with data in :

  • Triggers
  • Searches
  • Actions
  • Universal modules

Triggers

A trigger is a module used to track changes in a service and pulls it to so you can use the data in your . A trigger only shows new data from your service account. Each time a processes trigger data, it's data that hasn't been processed before in that .

For example, a trigger might detect when a new record is created, or an old record is deleted.

You can add a trigger only once in the as the first module. This ensures that the trigger initiates the by detecting the relevant changes and pulling in the data for further processing.

We highly recommend starting your with a trigger. Still, you can start your with any possible module. See the Advanced tips and examples sectionļ»æ to learn more.

Trigger types

There are two types of triggers in :

Polling triggers

A polling trigger checks if there are any changes in your service account since the previous run according to the scenario scheduleļ»æ. A polling trigger makes a request to the service. If there are changes, you see them in the moduleā€™s output as bundles. If there are no changes, you see no bundles.

Click Schedule settings in the toolbar to set how often a trigger module runs.

You can recognize a polling trigger by its name: it usually starts with Watch: Watch a record, Watch a row, etc. A polling trigger never has an instant tag attached to it.

You can select a starting point when a module starts tracking changes in the service. See more information in the Advanced tips and examples sectionļ»æ.

Instant triggers

An instant trigger works in a different way: the service notifies whenever a change happens. Basically, an instant trigger is a webhookļ»æ - a link that the service uses to send data to whenever changes occur. When you add an instant trigger, asks you to create a webhook. Some services may require to create a connection before you can create a webhook.

It's like buying plane tickets. A polling trigger is when you visit the airline's website yourself to check for discounts. An instant trigger is like getting a notification from the website when discounts are available.

If you add an instant trigger, your schedule is automatically set as Immediately as data arrives.

You can reschedule a if needed. In this case, a webhook receives data as soon as it arrives and stores it in a queue until the next run according to a new schedule.

You can recognize an instant trigger by a lightning icon and an instant tag:

Document image
ļ»æ
Document image
ļ»æ

Searches

A Search module helps you to get specific data from a service such as records, profiles, or other objects.

Search modules are flexible. You can add as many as you need and place them anywhere within your .

Search Types

There are two types of search modules in :

  • A Search module allows filtering and using search queries to find specific data. For example, Search records, Search rows, etc.
  • A List module retrieves all data from a service without any filtering. returns all objects that you have in your service account. For example, List records, List sheets, List customers, etc.

In most cases, when using searches, you can get up to 3,200 objects per module run. Also, additional third-party API limits may exist. See the Module limits sectionļ»æ below for more details.

Actions

An Action module processes the data retrieved from a service. Itā€™s one of the most commonly used modules in .

You can include as many as you need and position them anywhere in your .

There are the following types of actions in :

  • Get
  • Create
  • Update
  • Delete

Some actions are specific to the service, such as pin, save, or download.

Unlike Search modules that provide information about all objects or objects that match module filters, a Get module helps to receive information about one specified item. You should specify an object ID to get information about it. Read more in the Advanced Tips and Examples sectionļ»æ.

Universal modules

A Universal module allows you to make a custom API call to a service when doesn't provide a pre-built module for an API endpoint you need. This module, usually called the Make an API Call module, is available for most services. You may need to refer to the service API documentation to see a full list of available API endpoints.

You can add as many Universal modules as needed and place them anywhere in your .

If doesn't have an app for a service you need, you can use the HTTP appļ»æ to make API calls.

Apps and tools

Modules can be split into two groups based on whether they need to connect to a service or use a third-party API. There are two types:

  • Apps
  • Tools

Apps

When adding modules of an app, you need to create a connection to start working with them. Each module serves a specific action. For example, to get data, create a record, or delete a profile in your service account. You can associate a certain app module with a specific service API endpoint.

LinkedIn, Google Sheets, HubSpot CRM, Trello and many more are apps in . When you add a module, you see the Create a connection or Create a webhook buttons. In the Connections section, you can learn more about connections in .

Some apps don't require creating a connection, but they still use a third-party API. You may face third-party API limits when working with these apps. See the Module limits sectionļ»æ below for more details.

Document image
ļ»æ
Document image
ļ»æ

Tools

With tools, you don't need to set up a connection nor use a third-party API. Instead, you enter your data or customize module settings, and the module is ready to work. Examples include Iterator, Aggregator, Data store, Compose a string, Set variable, and many more.

These modules are ready to go as soon as you add them. However, some tools might require some setup before you can use them. For example, Data store might ask you to create a data store within .

Document image
ļ»æ
Document image
ļ»æ

Advanced tips and examples

In this section, you can find advanced tips and practical examples for using modules in .

Module limits

While using modules, you might run into limits that could cause errors in your .

Most Searches can only process up to 3,200 objects or 5MB of data per run. You only see the first 3,200 objects searched or as many as fit within the 5MB limit, even if there are more. Some modules only have a data size limit: each module can receive or process up to 5MB of data per run.

Keep in mind that the service's API limits may apply. For example, if the API allows only 1,000 objects, thatā€™s all you will receive no matter which type of modules you use. You can refer to the service API documentation to learn more about its limits.

Here are two best practices to avoid errors and make sure your runs smoothly:

  • When available, use the Limit field to define how many objects you want to receive during one run.
  • Use a Search module if you need specific data. Search modules let you narrow down results with filters and search queries.

If you use the Limit field, it's essential to set the right limit for the data being returned per one run. For example, with a polling trigger, you need to find a balance:

  • If the limit is too low, will only process a part of data, and the rest will have to wait until the next run. This could cause delays in data processing if a lot of new data arrives.
  • If the limit is too high, you might retrieve too many objects in one run. This also increases the risk of hitting the 40-minute run time limit if you need to perform many actions on each object.

We recommend setting the limit according to the number of new objects you plan to get for each run.

ACID modules

Modules tagged as ACID support rollback. will undo all the actions an ACID module takes if an error occurred in subsequent modules.

Imagine your ACID module receives two bundles. The next module processes the first one but encounters an error with the second one. In this case, rolls back the ACID module as if nothing was received. On the next run, the ACID module gets the same two bundles again. The next module being non-ACID will try to process both bundles once again.

You can recognize the ACID module by the ACID tag:

Document image
ļ»æ

Difference between Searches and Get modules

Unlike Search modules that provide information about all objects or objects that match module filters, a Get module helps to receive information about one specified object. You should specify an object ID to get information about it.

For data, this means Search or List modules usually return several bundles because there are multiple objects to retrieve. Get modules, however, always return a single object, which means only one bundle.

Using Update modules

With an Update module, you can perform three actions:

  • Erase content using the erase keyword in a content field. You can find it in the General functions tab.
Document image
ļ»æ

Use this keyword only if you make a PUT API call. If you perform a PATCH API call, leave a space in a content field.

  • Leave content as it is by leaving a content field empty.
  • Overwrite content by entering new data in a content field.

Using different modules as a trigger

While we recommend starting a Make with a Watch module, you can also begin with a Search module or Action module, depending on your goal. For example, if you need specific data, a Search or List module can act as a polling trigger starting a Make according to the Make schedule.

Document image
ļ»æ

If you make a non-Watch module a polling trigger, you cannot add a Watch module afterward.

Selecting the first bundle for a polling trigger

You can decide where to start to track changes made in the service. To do it, right-click the module and then click Choose where to start.

Document image
ļ»æ

Typically, you have the following options:

  • The current moment
  • A specific date
  • A specific ID or a record, or an email
  • The first record or email

Settings may vary depending on the app.

The option that you select in the Choose where to start menu only applies to the first run of the module. Subsequent runs track changes that occurred in the third-party app since the previous run.

ļ»æ