Skip to main content

JSON Actions

Append To JSON List

Append an object to a list within a JSON object. The object will be added even if it already exists within the list.

ParameterDescription
Existing JSON List Or ObjectThe JSON list or object to which the new object will be appended. Note that nested keys are only applicable to JSON objects, not lists. If the existing JSON is a list, direct appending to the end of the list is used. Also, ensure that the nested key provided points to an existing JSON list inside the JSON object.
JSON Object To AppendThe object data to append.
Nested Object KeyThe nested object key to append the data to. This parameter can only be used when the existing JSON is an object.
Thumbnail

Remove From JSON List

Remove an object from a list within a JSON object. All instances of the object will be removed from the list.

ParameterDescription
Existing JSON List Or ObjectThe JSON list or object from which the object will be removed. Note that nested keys are only applicable to JSON objects, not lists. Also, ensure that the nested key provided points to an existing JSON list inside the JSON object.
JSON Object To RemoveThe concrete object to remove. Ensure that the provided object is equal to the desired object to remove.
Nested Object KeyThe nested object key to remove the data from. This parameter can only be used when the existing JSON is an object.
Thumbnail

Convert JSON To CSV

Convert a JSON object to a CSV object.

ParameterDescription
JSON ObjectJSON object to convert to the CSV format.
Thumbnail