Map JSON List or Object Flow Step

Use the Map JSON List or Object flow step (Map step, for short) to align data between connectors. 

Before you can send data back and forth, you may need to map fields so that both connectors will be able to properly sync, send, and receive data. The Map step helps you do this.

Select MiniMap at the top right Edit Step window to view a high-level outline of all the properties and arrays you enter in the Map step. Hover over a property name to see the value. Or select any item in the MiniMap to jump directly to it in the step editor.

Step Inputs

In the Edit Step menu, you can add details about the step configuration as needed for your flow.

Step Detail

Select Add Item and enter values in the appropriate fields to add a new mapping rule. Select the trash can icon to delete a mapping rule.

Step Outputs

The output of the Map step is the mapped fields between systems—the properties and associated values that you named in the Step Details section.

This step returns an array containing the mapped fields. If no objects matched, the array will be empty. To access a property within a matched object, use its index (e.g., [0] for the first matching object, [1] for the second matching object, and so on).

For some Map steps, the output is straight mapping, pointing one property to its equivalent in the other system. For other Map steps, the output includes new properties and values you defined in the Step Details section.

The following step statuses may result after running the Map step.

Example Use Case

For an example use case of the map step, assume you need to move employee age and birthdate data from a payroll system into an HR system. The payroll system has a birthdate field but no age field, while the HR system has both birthdate and age fields. You can use the Map step to add an Age property for every employee based on the birthdate property.

Assuming you have a previous step in the flow that retrieves the necessary employee data from the payroll system. You can reference it in the List or Object field using the expression, flow.step('get-all-employees-from-payroll').output;.

You can then define the new Age property you want to map data to. In this case, you can use JavaScript libraries and flow helpers to base this new value on the existing birthday field. Note the use of flow.mapItem() to access the iteration data since it is inside a map step. 

To map the Birthdate property to the Emp_Birthdate property, enter the Property Name and Value as follows.

Your map step is now configured to move your employee age and birthdate data from your payroll system to your HR system.

Was this helpful? Give us feedback.