Inbound Plan Shipping Operation
Request
Body Params application/json
Inbound Plan Number (Source Number)
estimateDeliveryDate
string
requiredEstimated Arrival Date (yyyy-MM-dd)
Quantity of 20GP Container
20GP Container Number, separated by commas
Quantity of 40GP Container
40GP Container Number, separated by commas
Quantity of 40HQ Container
40HQ Container Number, separated by commas
Quantity of 45HQ Container
45HQ Container Number, separated by commas
{
"orderNo": "string",
"shipmentNo": "string",
"actualShipDate": "string",
"estimateDeliveryDate": "string",
"gp20Containerqty": 0,
"gp20Containerno": "string",
"gp40Containerqty": 0,
"gp40Containerno": "string",
"hq40Containerqty": 0,
"hq40Containerno": "string",
"hq45Containerqty": 0,
"hq45Containerno": "string",
"remark": "string"
}
Request samples
curl --location --request POST 'http://127.0.0.1/v1/inbound/ship' \
--header 'x-api-key: abc123(认证信息)' \
--header 'Content-Type: application/json' \
--data-raw '{
"orderNo": "string",
"shipmentNo": "string",
"actualShipDate": "string",
"estimateDeliveryDate": "string",
"gp20Containerqty": 0,
"gp20Containerno": "string",
"gp40Containerqty": 0,
"gp40Containerno": "string",
"hq40Containerqty": 0,
"hq40Containerno": "string",
"hq45Containerqty": 0,
"hq45Containerno": "string",
"remark": "string"
}'
Responses
application/json Return Code 200 is successful
{
"statusCode": 200,
"status": 0,
"code": 200,
"message": "操作成功"
}
Modified at 2023-12-07 21:49:41