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.
Parameter | Description |
---|---|
Existing JSON List Or Object | The 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 Append | The object data to append. |
Nested Object Key | The nested object key to append the data to. This parameter can only be used when the existing JSON is an object. |
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.
Parameter | Description |
---|---|
Existing JSON List Or Object | The 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 Remove | The concrete object to remove. Ensure that the provided object is equal to the desired object to remove. |
Nested Object Key | The nested object key to remove the data from. This parameter can only be used when the existing JSON is an object. |
Convert JSON To CSV
Convert a JSON object to a CSV object.
Parameter | Description |
---|---|
JSON Object | JSON object to convert to the CSV format. |