- API使用说明
- 物流
- oauth授权
- 订单
- 商品
- 库存
- 仓库
- 入库单
- oms客户
- B2B
- 费用
- webhook
- 直邮订单
查询入库单
POST
/api/inbound/get
请求参数
Body 参数application/json
ERP单号
erpNo
string
ERP单号
inboundNo
string
入库单号
boxNoList
array[string]
箱唛号
示例
{
"erpNo": "string",
"inboundNo": "string",
"boxNoList": [
"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 '/api/inbound/get' \
--header 'Content-Type: application/json' \
--data-raw '{
"erpNo": "string",
"inboundNo": "string",
"boxNoList": [
"string"
]
}'
返回响应
🟢200成功
application/json
Body
[API接口响应结果类]
0
1
code
integer
可选
默认值:
0
message
string
错误提示信息
data
object (InboundDetailVo)
数据
warehouseCode
string
仓库编码
inboundNo
string
入库单号
status
integer
可选
signTime
string
签收时间
receiveLastTime
string
最近一次收货时间
putawayLastTime
string
最近一次上架时间
finishTime
string
完成时间
receiveStatus
integer
可选
putawayStatus
integer
可选
checkOutLogistics
string
签出物流
checkOutTrackingNo
string
签出跟踪号
forceFinish
integer
可选
receiptType
integer
可选
trackingNoList
array[string]
物流运单号
skuList
array[object (InboundDetailSkuVo) {8}]
商品信息
boxList
array[object (InboundBoxDetailVo) {8}]
箱子信息
requestId
string
请求Id
示例
{
"code": 0,
"message": "",
"data": {
"warehouseCode": "",
"inboundNo": "",
"status": 0,
"signTime": "",
"receiveLastTime": "",
"putawayLastTime": "",
"finishTime": "",
"receiveStatus": 0,
"putawayStatus": 0,
"checkOutLogistics": "",
"checkOutTrackingNo": "",
"forceFinish": 0,
"receiptType": 0,
"trackingNoList": [
""
],
"skuList": [
{
"sku": "",
"count": 0,
"receiveCount": 0,
"putawayCount": 0,
"goodCount": 0,
"badCount": 0,
"actualWeight": 0.0,
"actualVolume": 0.0
}
],
"boxList": [
{
"boxNumber": 0,
"boxNo": "",
"skuCount": 0,
"length": 0.0,
"width": 0.0,
"height": 0.0,
"weight": 0.0,
"skuList": [
{
"sku": "",
"count": 0,
"receiveCount": 0,
"putawayCount": 0,
"goodCount": 0,
"badCount": 0,
"actualWeight": 0.0,
"actualVolume": 0.0
}
]
}
]
},
"requestId": ""
}
修改于 2024-10-29 02:44:24