wms外部对接
  1. 库存查询
wms外部对接
  • 对接配置
  • 商品档案
    • 分页查询商品列表
      POST
    • 批量新增或修改商品信息
      POST
    • 根据sku查询商品详情
      POST
  • 运输产品查询
    • 查询运输产品编码
      POST
  • 入库单
    • 创建入库单
      POST
    • 修改入库单
      POST
    • 取消入库单
      POST
    • 查询入库单状态
      POST
  • 仓库查询
    • 查询仓库信息
      POST
  • 出库单
    • 创建出库单
      POST
    • 修改出库单
      POST
    • 取消出库单
      POST
    • 查询渠道转单号和标签
      POST
    • 查询出库单详情
      POST
    • 查询订单是否到达
      POST
    • 更新订单面单及转单号
      POST
  • 库存查询
    • 查询单个商品库存
      POST
    • 批量查询商品库存
      POST
    • 批量查询商品库存(分页)
      POST
  1. 库存查询

批量查询商品库存(分页)

POST
/edi/osStoreStock/queryStockByPages
最后修改时间:2024-10-24 04:47:19
通过此接口分页查询SKU的库存整体情况。

请求参数

Header 参数
appId
string 
申耐特提供
必需
timestamp
string 
当前系统时间戳
必需
nonce
string 
必需
随机字符串,建议使用UUID,保证随机
sign
string 
必需
sign = MD5_32(body字符串+ secretKey) ,secretKey由申耐特提供
Body 参数application/json
dockCustomerId
string  | null 
对接客户id
必需
dockWhId
string  | null 
对接仓库id
必需
pageNum
integer  | null 
页数,从1开始
可选
默认值:
1
pageSize
integer  | null 
可选
分页大小,默认为10
默认值:
10
示例
{
    "dockCustomerId": "string",
    "dockWhId": "string",
    "pageNum": "1",
    "pageSize": "10"
}

返回响应

🟢200成功
application/json
Body
success
boolean  | null 
可选
code
string  | null 
可选
message
string  | null 
可选
data
object (ViewPage«OutDockOsStoreStockDTO») 
可选
pageNum
integer  | null 
可选
pageSize
integer  | null 
可选
records
array[object (OutDockOsStoreStockDTO) {13}]  | null 
可选
totalCount
integer  | null 
可选
totalPages
integer  | null 
可选
orderBys
array[object (SortField[]) {2}]  | null 
可选
示例
{
  "success": false,
  "code": "",
  "message": "",
  "data": {
    "pageNum": 0,
    "pageSize": 0,
    "records": [
      {
        "whId": "",
        "whName": "",
        "cusId": "",
        "skuNo": "",
        "skuName": "",
        "skuEnName": "",
        "quantity": 0,
        "canUseQuantity": 0,
        "waitReceiveQuantity": 0,
        "lockQuantity": 0,
        "noLocationQuantity": 0,
        "locationQuantity": 0,
        "detailList": [
          {
            "locationNo": "",
            "quantity": 0
          }
        ]
      }
    ],
    "totalCount": 0,
    "totalPages": 0,
    "orderBys": [
      {
        "field": "",
        "isAsc": false
      }
    ]
  }
}
修改于 2024-10-24 04:47:19
上一页
批量查询商品库存
Built with