Concatenate Multiple Items in List

Concatenate fields of items in list based on list with path to a fields in object.

This action is used to concatenate multiple items together from a list of JSON objects.

Give it an input list of JSON objects, the item fields you want concatenated together and separator and it will return you a one string.

Inputs

Input

Type

Description

Items List

List

List of JSON objects

JSON Path List

List

List of JSON Fields you want their value concatenated together

Field Separator

String

Separator of concatenated items within one JSON object

Object Separator

String

Separator of concatenated items fields (see example below)

Outputs

Output

Type

Description

success

Boolean

False if any input formatting issue

text

String

Concatenated text

Example

Input Items List:

[
  {
    "1": "items",
    "2": "items2"
  },
  {
    "1": "to", 
    "2": "to2"
  },
  {
    "1": "concatenate",
    "2": "concatenate2"
  }
]

Input JSON Path List

["1", "2"]

Field Separator: ,
Object Separator:

Result: items,items2 to,to2 concatenate,concatenate2