创建入库计划


POST http://openapi.ck1info.com/v1/inboundplanorders

输入参数

Body Parameters
名称类型格式要求是否必须描述示例值
ShipmentId string

满足正则: ^[a-zA-Z0-9\-_]{1,25}$

长度: 0 ~ 25

必须

商家入库单Id

STOL201603300001

Location string

长度: 0 ~ 20

处理点;如不填则使用商家默认处理点

GZ

WarehouseId string

长度: 0 ~ 30

必须

仓库Id

ShipmentType string

长度: 0 ~ 30

必须

发货方式

Skus Collection of InboundPlanSkuObject

None.

必须

SKU列表

PlanArriveDate date

None.

必须

预计到达海外仓时间

2020-10-15 00:00:00

PlanArriveLocationDate date

None.

必须

预计到达国内仓时间(送货到出口易国内处理点的时间)

2020-10-15 00:00:00

Remark string

长度: 0 ~ 200

备注

测试入库订单

IsSelfInbound boolean

None.

必须

是否自发头程,默认为false

PlanVolume decimal number

None.

必须

预估方数(CBM),默认为0

输入参数的json形式
{
  "ShipmentId": "sample string 1",
  "Location": "sample string 2",
  "WarehouseId": "sample string 3",
  "ShipmentType": "sample string 4",
  "Skus": [
    {
      "Sku": "sample string 1",
      "Quantity": 2
    },
    {
      "Sku": "sample string 1",
      "Quantity": 2
    }
  ],
  "PlanArriveDate": "2024-11-14T14:26:14.667+08:00",
  "PlanArriveLocationDate": "2024-11-14T14:26:14.667+08:00",
  "Remark": "sample string 7",
  "IsSelfInbound": true,
  "PlanVolume": 9
}

返回结果

名称类型格式要求是否必须描述示例值
ShipmentId string

None.

商家预入库单Id

返回结果的json形式
{
  "ShipmentId": "sample string 1"
}