{
"erpNo": "string",
"trackingNo": "string",
"expectedTime": "string",
"warehouse": "string",
"remark": "string",
"receiptType": 1,
"skuList": [
{
"sku": "string",
"count": 0
}
],
"boxList": [
{
"length": 0,
"width": 0,
"height": 0,
"weight": 0,
"skuVos": [
{
"sku": "string",
"count": 0
}
]
}
]
}
curl --location --request POST '/api/inbound/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"erpNo": "string",
"trackingNo": "string",
"expectedTime": "string",
"warehouse": "string",
"remark": "string",
"receiptType": 1,
"skuList": [
{
"sku": "string",
"count": 0
}
],
"boxList": [
{
"length": 0,
"width": 0,
"height": 0,
"weight": 0,
"skuVos": [
{
"sku": "string",
"count": 0
}
]
}
]
}'
{
"code": 0,
"message": "",
"data": {
"erpNo": "",
"inboundNo": "",
"boxNoList": [
""
]
},
"requestId": ""
}