- 默认分组
- 产品
- 入库计划单
- 库存
- 订单
- 退货
- 调拨
- 预约
- 基础数据
- 三方授权
- 运费
- 费用
修改发运信息
POST
https://hwc-open-api.yqn.com/v1/inbound/updateShippingInformation
请求参数
Body 参数application/json
inboundPlanOrderNo
string
入库计划订单号
>= 1 字符
actualShipDate
string <date>
必需
>= 1 字符
estimateArriveTime
string <date>
必需
>= 1 字符
tmsNo
string
物流单号
>= 1 字符
goodsType
enum<integer>
必需
枚举值:
245
isPallet
enum<integer>
是否打托
枚举值:
01
boatCompanyCode
string
可选
由卡车、快递转为轮船时必填;
轮船转为卡车、快递时,或卡车、快递互转时非必填;
>= 1 字符
gpSize
enum<integer>
可选
枚举值:
1234
gpNumber
string
集装箱号
>= 0 字符
示例
{
"inboundPlanOrderNo": "string",
"actualShipDate": "2019-08-24",
"estimateArriveTime": "2019-08-24",
"tmsNo": "string",
"goodsType": 2,
"isPallet": 0,
"boatCompanyCode": "string",
"gpSize": 1,
"gpNumber": "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/updateShippingInformation' \
--header 'Content-Type: application/json' \
--data-raw '{
"inboundPlanOrderNo": "string",
"actualShipDate": "2019-08-24",
"estimateArriveTime": "2019-08-24",
"tmsNo": "string",
"goodsType": 2,
"isPallet": 0,
"boatCompanyCode": "string",
"gpSize": 1,
"gpNumber": "string"
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
message
string
返回信息
示例
{
"code": "string",
"message": "string"
}