-
开发者必读
Api调用说明(必读)
授权说明
国内直发对接流程
仓库一件代发对接流程
头程备货对接流程
海外仓发平台物流
平台Y2模式对接流程
常见问题
接口更新记录说明文档
OpenApi Postman使用示例
- 中国直发
- 商家与SKU
- 头程入库
- FBA订单
- 来货单
- 出库单
- 库存管理
- 逆向物流服务
- 收货服务
- 退件管理
- 轨迹查询
- 计价查询
- 数据列表
- 财务查询
读取在途库存SKU接口
POST http://openapi.ck1info.com/v1/InventoryPutawayOrder/SkuInboundInfo
接口说明: 读取在途库存SKU接口
Http 200 - 成功
Http 400 -读取数据有误,请检查输入参数
Body Parameters
名称 类型 格式要求 是否必须 描述 示例值 StorageNoList Collection of string None.
必须
库存编码列表
WarehouseCode string None.
仓库代码(传空代表查所有仓库)
TimeFrom date None.
必须
来货单创建时间开始时间
TimeTo date None.
必须
来货单创建时间结束时间
{ "StorageNoList": [ "sample string 1", "sample string 2" ], "WarehouseCode": "sample string 1", "TimeFrom": "2025-06-27T03:01:42.058+08:00", "TimeTo": "2025-06-27T03:01:42.058+08:00" }
返回结果
名称 类型 格式要求 是否必须 描述 示例值 WarehouseCode string None.
仓库代码
StorageNo string None.
库存编码
CustomerQuantity integer None.
客户填写的申报数量
ReceivedQuantity integer None.
来货单,货物的实际到仓总数量
InTransitQuantity integer None.
在途数量
[ { "WarehouseCode": "sample string 1", "StorageNo": "sample string 2", "CustomerQuantity": 3, "ReceivedQuantity": 4, "InTransitQuantity": 5 }, { "WarehouseCode": "sample string 1", "StorageNo": "sample string 2", "CustomerQuantity": 3, "ReceivedQuantity": 4, "InTransitQuantity": 5 } ]