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 Axelor Connect data store.
You can view and manage your data stores and the data they contain in the data stores section of Axelor Connect.
![]() |
Note |
---|---|
The various examples of use can be found here. |
Prerequisites
-
A data store created
In order to use the data store modules, it is necessary to create a data store in your Axelor Connect account.
![]() |
Caution |
---|---|
The module dialog fields that are displayed in bold (in the Axelor Connect scenario, not in this documentation article) are mandatory! |
-
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.
|
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 Axelor Connect 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. |
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.
|
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.
|
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. |
Return Wrapped Output |
Choose if you want the output to be returned in the same way that the |
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 Axelor Connect 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. |
Axelor Connect 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. |
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.
![]() |
Caution |
---|---|
Axelor Connect sure that while creating a new data store you do not assign all of your space to only one record unless you need it. |