- 默认分组
- 产品
- 入库计划单
- 库存
- 订单
- 退货
- 调拨
- 预约
- 基础数据
- 三方授权
- 运费
- 费用
入库计划发运操作
POST
https://hwc-open-api.yqn.com/v1/inbound/ship
inbound
请求参数
Header 参数
x-api-key
string
必需
示例值:
abc123(认证信息)
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
orderNo
string
必需
shipmentNo
string
物流单号
actualShipDate
string
实际发运日期
estimateDeliveryDate
string
预计到仓日期
gp20Containerqty
integer
20GP集装箱数量
gp20Containerno
string
可选
gp40Containerqty
integer
40GP集装箱数量
gp40Containerno
string
可选
hq40Containerqty
integer
40HQ集装箱数
hq40Containerno
string
可选
hq45Containerqty
integer
45HQ集装箱数
hq45Containerno
string
可选
remark
string
备注
示例
{
"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"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://hwc-open-api.yqn.com/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"
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
message
string
返回信息
示例
{
"statusCode": 200,
"status": 0,
"code": 200,
"message": "操作成功"
}
🔴500失败