Description

Get the product info (count / status ...) in each warehouse.

Path

HTTP Verb

URL

POST

/api/supplier-service/v1/b2b/inventory


Header Sample


POST /api/supplier-service/v1/b2b/inventory HTTP/1.1
Content-Type: application/json
Accept: application/json
User-Agent: Mozilla 5.0
Host: http://qa.etowertech.com/
X-WallTech-Date: Thu, 06 Aug 2020 06:36:24 GMT
Authorization: WallTech testLvs2jdug2qIoRsJyuxs:VaWNgikNP0NGcoxVCeWYid50MYQ=



Fields

Field

Data Type

Length

Mandatory

Description

skuList

String[]

商品编码

shipperName

String

发货人名称

sku

String

商品编码

skuNameEn

String

商品英文名

skuNameLocal

String

商品中文名

warehouseInventoryDTOList

Object[]

仓库库存信息

availableInventory

Int

可用库存

incomingInventory

Int

待入库库存

outgoingInventory

Int

待出库库存

overseasWarehouseCode

String

仓库代码

overseasWarehouseName

String

仓库名称

unsellableInventory

Int

不可用库存

code

String

编码内容

errors

Object[]

报错

message

String

返回信息

messageId

String

信息编码

success

Boolean

成功响应

warnList




废弃字段


Request Sample

{
    "skuList": [
        "AWE001",
        "202206160010"   
 ]
}

Response

{
    "code": "0",
    "data": [
        {
            "shipperName": "xz",
            "sku": "202206160010",
            "skuNameEn": "note book",
            "skuNameLocal": "记事本",
            "warehouseInventoryDTOList": [
                {
                    "availableInventory": 0,
                    "incomingInventory": 620,
                    "outgoingInventory": 0,
                    "overseasWarehouseCode": "mghc",
                    "overseasWarehouseName": "美国货仓",
                    "unsellableInventory": ""
                },
                {
                    "availableInventory": 26,
                    "incomingInventory": 580,
                    "outgoingInventory": 5,
                    "overseasWarehouseCode": "elsck",
                    "overseasWarehouseName": "俄罗斯仓库",
                    "unsellableInventory": ""
                }
            ]
        },
        {
            "shipperName": "xz",
            "sku": "AWE001",
            "skuNameEn": "bag",
            "skuNameLocal": "背包",
            "warehouseInventoryDTOList": [
                {
                    "availableInventory": 75,
                    "incomingInventory": 0,
                    "outgoingInventory": 20,
                    "overseasWarehouseCode": "USEA",
                    "overseasWarehouseName": "谷仓",
                    "unsellableInventory": 0
                }
            ]
        }
    ],
    "errors": "",
    "message": "",
    "messageId": "",
    "success": true,
    "warnList": ""
}



{
    "code": "0",
    "data": [],
    "errors": "",
    "message": "",
    "messageId": "",
    "success": true,
    "warnList": ""
}