How to create a proxy that takes this request:
Request:
{
“products”: [
{
“id”: 1,
“name”: “product1”,
“price”: 50
},
{
“id”: 2,
“name”: “product2”,
“price”: 30
}
]
}
and responds with this
Response:
1
product1
50
2
product2
30
80