Json composer from a list of things

Hi All,

I don’t get the solution to create a simple multiline json starting from a list of things. I have to send it by API outside of my app.

I have payments list and I have to send a json like the following:
{
“total_amount”:300,
“quantity”:2,
“payments”: [
{
“amount”: 100,
“currency”: “EUR”
},
{
“amount”: 200,
“currency”: “USD”
}
]
}

How can I do that on Bubble?

Thank you and I’m sorry if it is a very simple question, but I’m a newby here :slight_smile: