Add Data Source Rows
Add rows to a GoFormz Data Source from a DataSet JSON file. See here for more on DataSet files, including the file format.
Inputs
Key | Value | |
---|---|---|
| Required | The unique 32-digit hexadecimal identifier of the Data Source to which new rows should be added. See here for more details. |
| Required | The name of the DataSet JSON file containing the rows to be appended to the Data Source identified by |
| Required | The name of the file column in the DataSet that should be mapped to the Data Source key column. |
| Required | The order in which DataSet columns should be inserted into the Data Source, excluding the key, separated by pipe characters. For instance, if the value is
Note that your |
Outputs
None
Usage
This action adds rows to the GoFormz Data Source specified by dataSourceId
. The rows to be added are specified in addDataSetStorageFileName
, and the mapping of DataSet columns to Data Source columns is specified in dataSetKeyColumn
and columnOrder
.
This action is typically used as part of a workflow to sync a GoFormz Data Source with an external data source. In this scenario, the rows that need to be added typically come from the Compare Data Source To DataSet action. See here for a full step-by-step example of this use case, with screenshots.
Unlike the Update Data Source Rows and Delete Data Source Rows actions, this action can be used independently of the Compare Data Source To DataSet action. This is possible because the Add action does not rely on row IDs in the input data, while the Update and Delete actions do.
Updated about 2 months ago