- 默认分组
- 产品
- 入库计划单
- 库存
- 订单
- 退货
- 调拨
- 预约
- 基础数据
- 三方授权
- 运费
- 费用
查询库内变更明细
POST
https://hwc-open-api.yqn.com/v3/inventoryChange/queryInventoryDetail
请求参数
Body 参数application/json
page
integer
页码
size
integer
页面大小
startDate
string
变更开始时间
endDate
string
变更结束时间
skus
array[string]
SKU
warehouseCode
array[string]
仓库编码
示例
{
"page": 0,
"size": 0,
"startDate": "string",
"endDate": "string",
"skus": [
"string"
],
"warehouseCode": [
"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/v3/inventoryChange/queryInventoryDetail' \
--header 'Content-Type: application/json' \
--data-raw '{
"page": 0,
"size": 0,
"startDate": "string",
"endDate": "string",
"skus": [
"string"
],
"warehouseCode": [
"string"
]
}'
返回响应
🟢200成功
application/json
Body
statusCode
integer
必需
status
integer
必需
code
integer
必需
message
string
必需
data
object
必需
page
integer
当前页码
size
integer
每页展示数
total
integer
列表总数
totalPage
integer
列表总页数
isLast
integer
是否最后一页
content
array [object {18}]
必需
示例
{
"statusCode": 200,
"status": 0,
"code": 200,
"message": "Operate Successful",
"data": {
"page": 0,
"size": 10,
"total": 1,
"totalPage": 1,
"isLast": 1,
"content": [
{
"orgWarehouseCode": "UAT-RF-DL",
"lineName": null,
"sourceChannel": "ebay.kbqn1848",
"sku": "zdc-chair-001",
"inventoryType": 0,
"isOverWarehouse": 0,
"sourceId": "136394704-9777675",
"sourceNo": "136394704-9777675",
"planNo": "136394704-P136394704",
"orderNo": "ZDcL2024010905",
"opType": 100,
"opLabel": 3,
"quantity": 2,
"length": 68.58,
"width": 40.64,
"weight": 14514.944,
"height": 50.8,
"updatedAt": "2024-08-30 01:41:20"
}
]
}
}