Hi guys,
Example JSON:
"ConsumerDetails": {
"DeliveryAddress": {
"Company": "",
"FirstName": "Kelvin",
}}
DATA field:
= ConsumerDetails__DeliveryAddress__Company
=ConsumerDetails__DeliveryAddress__FirstName
That works!
But!
What if i need to POST the following in the DATA field?:
"Lines": d{`
"Sku": "1001",
"OrderedQuantity": 1,
}]
Ive tried:
Lines__sku
Lines__lines__sku
Lines lines]sku
Linesblines]__sku
The [ ] markup the API required me to send the ‘lines’ data in is not recognized.
Anyone know how to do this?
Tnx in advance.