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 ![:tada: :tada:](https://community.n8n.io/images/emoji/twitter/tada.png?v=12)
You can use an expression like this to stringify json data.
![image](https://community.n8n.io/uploads/default/original/3X/a/6/a62d61a6041ad33dcf8aadd288ff1c02fc830ae0.png)
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