Order Submit
POST - Submitting order to ASL System
POST - https://portal.asl-asia.cloud:4000/api/order/submitBody
Field
Type
Optional
Example JSON
Error
Code
Reason
Last updated
POST - Submitting order to ASL System
POST - https://portal.asl-asia.cloud:4000/api/order/submitLast updated
{
"order_id": "testing_order_id_002",
"is_cod": true,
"payment_amount": 12000,
"reference": "test",
"payment_currency": "HKD",
"buyer": {
"name": "David",
"address": "testing address",
"city": "Hong Kong",
"zip": "000852",
"country": "HK",
"state": "NA"
},
"note": "testing",
"dimension": {
"weight": { "unit": "kg", "value": 12 },
"height": { "unit": "cm", "value": 100 },
"width": { "unit": "cm", "value": 100 },
"length": { "unit": "cm", "value": 100 }
},
"item_lines": [
{
"sku": "TEST-01",
"qty": 1
}
]
}