We use the JSON aggregator to create a JSON file that is used as body in a API request. The JSON aggregator is adding β[β at the beginning and β]β at the end of the string. This is causing an error in the API request. How can we prevent the JSON aggregator from doing this?
You can use the substring function in order to get rid of the unwanted [ ]
brackets generated by the JSON aggregator.
How to configure the function:
β
The function βtranslatedβ into words:
From the text (in this case a JSON string), give me only characters 1 till the end of the string minus one character (length -1)
βThe code to copy:
{{substring(211.
JSON String; 1; length(211.
JSON String) - 1)}}