JSON
You do not need to establish a connection to use the JSON app.
Converts the multiple output bundles to a single bundle.
You need to attach this aggregator module to the source module whose output you want to convert to a single module; for example, the Parse JSON modules give the output in multiple bundles.
After selecting the source module, select the data structure, and the remaining fields are populated from the source module.


Converts the given JSON data to XML format.

This module helps you create JSON. The fields in this module depends on your data structure.

Select the data structure and enter the field details to create JSON. The data provided in the module returns in the JSON format in the output.

Data structure
Fill the JSON string field in the Parse JSON module.
You can now connect the modules that follow. The items from the Parse JSON module will now be available for mapping.
Collection vs. Array
JSON string field can contain a collection.
In which case, the output will be a single bundle containing the items of the collection:
Or it can contain an array.
In which case the output will be a series of bundles, each bundle containing one array's item.
Run the module whose output data you want to copy using the Parse JSON module.
Click the resulting output above the module.
Click Download output bundles from the dropdown menu.
A window containing the original module's output bundles in JSON format pops up.

Copy the window's content and click Close.

Insert the Tools > Parse JSON module after the original module, open its configuration, and paste the copied JSON data in Step 4 into the JSON string field.

Put the original module back before the mock-up JSON module and remove the JSON module.

Transforms any object to JSON.
Let us assume that the data records you wish to transform to JSON format are in a Google spreadsheet. Here is the procedure on how to transform the data records to JSON format:
Place the Google Sheets > Select rows module in your to get the data. Set up the module to retrieve rows from your Google spreadsheet and set the Maximum number of returned rows to a small number but larger than one for testing purposes (e.g., three). Run the Google Sheets module (right-click it and choose "Run this module only") and verify its output.
Connect the Array Aggregator module after the Google Sheets module. In the module's setup, choose the Google Sheets module in the Source node field. Leave the other fields as they are for the moment.
Connect the JSON > Create JSON module after the Array Aggregator module. The module's setup requires a data structure that describes the JSON format. Click the Add button to open the Data structure setup. The easiest way to create this Data structure is to generate it automatically from a JSON sample. Click the Generator button and paste your JSON sample to the Sample data field:

Click Save. The Specification field in the Data structure setup should now contain the generated structure.
Change the name of your Data structure to something more specific (e.g., "Books") and click Save. A field corresponding to the root array attribute should appear mappable in the JSON module's setup.
Click the Map button next to the field and map the Array[] item output from the Array aggregator module.

Click OK to close the JSON module's setup.
Open the setup of the Array Aggregator module. Change the Target structure from Custom to the JSON module's field corresponding to the root array attribute. Map items output from the Google Sheets module to the appropriate fields.

Click OK to close the Array Aggregator module's setup.
Run the . The JSON module should output the correct JSON format. Open the setup of the Google Sheets module and increase the Maximum number of returned rows number to be larger than the number of rows in your spreadsheet to process all the data. The resulting JSON can then be used as a body of an HTTP request, returned as a Webhook's response, etc.