Hello !
I am currently working with Allmyles API that send this kind of response :
{
"car_results": [
{
"available": true,
"traits": {
"transmission": "manual",
"air_conditioning": true,
"type": "2/4 door car",
"class": "mini"
},
"vehicle_id": "1_0_0",
"vendor_name": "NATIONAL",
"overage_fee": {
"currency": "EUR",
"amount": null,
"unit": null,
"included_distance": null
},
"price": {
"currency": "EUR",
"amount": "75.48"
},
"vendor_id": "0",
"unlimited": true,
"vendor_code": "ZL"
},
{
"available": true,
"traits": {
"transmission": "manual",
"air_conditioning": true,
"type": "4-5 door car",
"class": "compact"
},
"vehicle_id": "2_1_0",
"vendor_name": "EUROPCAR",
"overage_fee": {
"currency": "EUR",
"amount": "0.14",
"unit": "Mile",
"included_distance": 300
},
"price": {
"currency": "EUR",
"amount": "98.90"
},
"vendor_id": "1",
"unlimited": false,
"vendor_code": "EP"
}
]
}
I would like create a list of new thing via workflow, but here is what i am getting :
How can i fix it ?