JSON

JSON icon

Contains utilities for working with JSON in a flow.

Actions

Action

Configuration fields

Data type

Required?

Omit object properties - Omits JSON object properties by the provided paths

Paths - An array of paths to omit

["value"]

JSON

Checkmark icon, required field

Object - Enter a valid JSON object

{ "value": 123 }

JSON

Checkmark icon, required field

Merge objects - Merges two or more JSON objects

Object - Enter a valid JSON object

{ "first": 1 }

JSON

Checkmark icon, required field

Sources - Enter a valid JSON object or array

[{ "second": 12 },{ "third": 123 }]

JSON

Checkmark icon, required field

Convert to JSON format - Convert a text string to JSON format

Text string to convert - Enter a valid JSON text string

{ "value": 123 }

String

Checkmark icon, required field

Modify object properties in array - Updates the objects in an array by renaming and omitting properties

Array - The array with object properties to modify

[ ]

JSON Checkmark icon, required field

Object property mappings - An object that contains one or more key-value pairs used to remap object property keys in the source array. The key should be an existing object property key, and the value should be the new object property key.

{ "Full Name": "fullName" }

JSON Checkmark icon, required field

Object properties to omit - An array of object property keys to omit from objects in the source array. Both the key and value will be omitted.

[ "First Name" ]

JSON