Hi there , I am trying to format the following in the api connector. it is a post to the following url https://app.getswift.co/api/v2/deliveries
{
“apiKey”: “MERCHANT_KEY”,
“booking”:{
“pickupDetail”: {
“name”: “Rupert”,
“phone”: “1234567890”,
“address”: “57 luscombe st, brunswick, melbourne”
},
“dropoffDetail”: {
“name”: “Igor”,
“phone”: “0987654321”,
“address”: “105 collins st, 3000”
}
}
}
How can I structure this in the api connector? I have set header as Content-type application/json, tried putting apiKey as a header and a body parameter, none worked, have entered body parameters like this booking[pickupDetail][address]. it is working in postman
