curl --location --request POST '/api/v1/public/shipments/inbound/create' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"vendor": {{vendor_id}},
"inbound_address": {{pickup_id}},
"note": "Noi dung ghi chu shipment inbound",
"parcels": [
{
"reference_code": "PA0001",
"note": "Noi dung ghi chu",
"weight": 1000,
"volume": "10x20x11",
"items": [
{
"sku": "SKUIV851166916",
"inbound_quantity": 12
},
{
"sku": "SKUIV858461887",
"inbound_quantity": 12
},
{
"sku": "SKUIV852419601",
"inbound_quantity": 20
}
]
}],
"images": [
{
"image_url": "https://cf.shopee.vn/file/b0e52a4fbd93984a86d0a13c3b84144f"
}
],
"documents": [],
"additional_services": "CIG,ULG,RGO",
"config": {
"auto_approve": 1
}
}'