Data store
Data stores allow you to store data from scenario or transfer data between individual scenarios or scenario runs. You can use data stores to store data from apps during scenario execution. Data stores are similar to a simple database.
The data store app's modules allow you to add, replace, update, retrieve, delete, search, or count records in your Make data store.
You can view and manage your data stores and the data they contain in the data stores section of Make.
Note
The various examples of use can be found here.
Getting started with data stores
Prerequisites
A data store created
In order to use the data store modules, it is necessary to create a data store in your Make account.
Caution
The module dialog fields that are displayed in bold (in the Make scenario, not in this documentation article) are mandatory!
Creating a data store in Make
Click Data stores in the left menu.
Click Add data store.
Enter settings for the new data store.
Data store name | Enter the name for the data store. E.g. Contacts |
Data Structure | A data structure, is a list of the columns for a table, that indicates the column name and data type. You have three options:
Please see the Setting Up the Data Structure section of this article. |
Data storage size in MB | Allocate the size for the data store from your total Internal data storage. NoteThe reserved amount can be changed at any time later on. The total internal data storage capacity depends on the plan you have purchased. |
Setting up the data structure
To set up the data structure, open the Add data structure dialog.

You can access this dialog by clicking the Add button when creating or editing the data store:

Data structure name | Enter the name for the data structure you are going to create. | |
Specification | There are two options for how you can specify the data store columns.
The empty columns in the data store view:
You can then add values to the data store manually or using the Make data store modules. | |
Strict | If enabled, the data structure will be compared to the structure of the payload and if the payload contains extra items not specified in the data structure, the payload will be rejected. |
Actions
Adds or replaces a record in the data store.
Warning
The module throws an error when you try to add the record which is already in the data store under the same name and the Overwrite an existing record option is disabled.
Data store | Select or add the data store where you want to create a record. |
Key | Enter the unique key. The key can be used later to retrieve the record. If you leave this field blank, the key will be generated. |
Overwrite an existing record | Enable this option to overwrite the record. The record you want to overwrite must be specified in the Key field above. |
Record | Enter the desired values to the record's fields. CautionThe maximum size of the record in data store is 15 MB! |
Updates a record in the selected data store.
Data store | Select or add the data store where you want to create a record. |
Key | Enter the unique key of the record you want to update. |
Insert missing record | Enable this option to create a new record if the record with the specified key doesn't already exist. |
Record | Enter the desired values to the record's fields that you want to update. CautionThe maximum size of the record in data store is 15 MB! |
Retrieves a record from the selected data store.
Data store | Select the data store you want to retrieve a record from. |
Key | Enter the unique key of the record you want to retrieve. |
Returns the value true
if the record exists in the specified data store or false
if the record doesn't exist in the data store.
Data store | Select the data store you want to check for the record existence. |
Key | Enter the key of the record you want to check for existence |
Deletes a specified record from the selected data store.
Data store | Select the data store you want to check for the record existence. |
Key | Enter the key of the record you want to delete. |
Deletes all records from the selected data store.
Data store | Select the data store you want to delete all records from. |
Performs a search for records based on filter settings.
Data store | Select the data store you want to check for the record's existence. | ||||
Filter | Set the filter for the search. Select the column, operator and required value (search term) for the search. | ||||
Sort |
| ||||
Limit | Set the maximum number of search results Make will return during one execution cycle. | ||||
Continue the execution of the route even if the module returns no results | If enabled, the scenario will not be stopped by this module. |
Returns the number of records in the selected data store.
Data store | Select the data store whose records you want to count. |
Managing records in data stores
Make allows you to view, update, and delete the records in your data store.
To manage records in your data store, click Data stores in the left menu, then click Browse next to your data store.
![]() |
This shows the editing interface for data store records.
![]() |
Click Add to add new records to the data store. You can add multiple records by clicking Add multiple times. Newly inserted records are highlighted in green.
Click an existing field to change it. Changed records are highlighted in yellow.
![]() |
Click Save to save all your changes to the data store. Click Discard changes to throw away any changes you have made, including added records and edited records.
Note
You cannot use Discard changes to get back records that you have deleted.
To delete records from your data store, first select the records you want to delete by selecting the check boxes next to the records. Then, click the Delete icon.
![]() |
Note
You cannot roll back deleted records.
Troubleshooting
At the current moment of writing this, there is no tool which can automate this, making it difficult to obtain lost data. However, the long method of recovering data in your data store is to go through all execution logs of scenarios where items were inserted to the data store, then get data manually and insert them again.
The reason you are getting a message that states that you are out of space is because you currently have a datastore that has already been assigned your allocated datastore storage.
Please edit any of your existing data stores to free up space.
Click Edit.
Reduce the data storage size.
You can now add a new data store.
Caution
Make sure that while creating a new data store you do not assign all of your space to only one record unless you need it.