{
"warehouse": "WH123",
"recipientCountry": "US",
"recipientProvince": "California",
"recipientCity": "Los Angeles",
"recipientArea": "aaa",
"recipientAddress": "1234 Main St",
"zipCode": "90001",
"buyerPhone": "123-456-7890",
"logisticsId": 123,
"packages": [
{
"weight": "12.5",
"length": "12.5",
"width": "12.5",
"height": "12.5"
}
],
"skuList": [
{
"skuId": 1101,
"sku": "aaa",
"num": 2
},
{
"skuId": 1102,
"sku": "bbb",
"num": 3
}
]
}curl --location --request POST '/api/logistics/price' \
--header 'Content-Type: application/json' \
--data-raw '{
"warehouse": "WH123",
"recipientCountry": "US",
"recipientProvince": "California",
"recipientCity": "Los Angeles",
"recipientArea": "aaa",
"recipientAddress": "1234 Main St",
"zipCode": "90001",
"buyerPhone": "123-456-7890",
"logisticsId": 123,
"packages": [
{
"weight": "12.5",
"length": "12.5",
"width": "12.5",
"height": "12.5"
}
],
"skuList": [
{
"skuId": 1101,
"sku": "aaa",
"num": 2
},
{
"skuId": 1102,
"sku": "bbb",
"num": 3
}
]
}'{
"code": 0,
"message": "string",
"data": [
{
"id": 0,
"code": "string",
"name": "string",
"totalFee": "string",
"baseFee": "string",
"extraFee": "string",
"currency": "string",
"errMsg": "string"
}
],
"requestId": "string"
}