I have a JSON with the structure below:
[
{
"list": [
{
"orderId": "1176593235704-01",
"creationDate": "2021-11-16T02:53:54.0000000+00:00",
"clientName": "Amanda Regina Corrente"
},
{
"orderId": "NTS-78005683",
"creationDate": "2021-11-16T02:51:32.0000000+00:00",
"clientName": "Carla Ortiz"
},
{
"orderId": "1176592108139-01",
"creationDate": "2021-11-16T02:35:08.0000000+00:00",
"clientName": "OZIRIS BO"
}
]
}
]
I need to retrieve all requests, I’m using http request and then the set component. How should I proceed so that all orders can be retrieved?
