JSON
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 |
|
Object - Enter a valid JSON object { "value": 123 } |
JSON |
|
|
Merge objects - Merges two or more JSON objects |
Object - Enter a valid JSON object { "first": 1 } |
JSON |
|
Sources - Enter a valid JSON object or array [{ "second": 12 },{ "third": 123 }] |
JSON |
|
|
Convert to JSON format - Convert a text string to JSON format |
Text string to convert - Enter a valid JSON text string { "value": 123 } |
String |
|
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 |
![]() |
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 |
![]() |
|
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 |