Hi All
I would need your help to convert this JSON
{
“symbol”: “BTCUSDT_UMCBL”,
“marginCoin”: “USDT”,
“leverage”: “22”
}
to a string with all the above elements so that it looks like this in the end:
{"symbol": "BTCUSDT_UMCBL","marginCoin": "USDT","leverage": "20"}
marcus
2
Hey @Disrupted-Normality,
welcome to the community 
You can use an expression like this to stringify json data.

Here is an example workflow:
2 Likes
Any sugestion?
I do a select in postgres
I need a output to send a unique email with all data.
I can’t do this
Example:
[
{
"Description 1\nMessage 1\nDescription 2\nMessage 2\nDescription 3\nMessage 3\n"
}
]
In my email receive:
Description 1: Message 1
Description 2: Message 2
Description 3: Message 3