CountryAndWarehouse

Country and warehouse relations

This interface is to obtain the corresponding relationship between country and warehouse. Our stock is placed in different countries and warehouses, you can obtain stock through different countries and warehouses.

Response parameter

Parameter name
Type
Remark

warehouseId

Number

warehouse id. for example: 13

warehouseCode

String

Shipping warehouse code,for example: G004

warehouseNameExt

String

Shipping warehouse Chinese name,for example: 东莞-独立站

countryCode

String

Shipping country code,for example: CN

countryCn

String

Shipping country name,for example: China

status

Number

Warehouse usage status: 0-disabled; 1-enabled,for example: 1

Query shipping country and warehouse

get country and warehouse

GET /openapi/v1/product/countryAndWarehouse

{
    "code":10000,
    "message":"kk.api.200",
    "data":{
        "list":[
            {
                "warehouseId":"",
                "warehouseCode":"",
                "warehouseName":"",
                "warehouseNameExt":"",
                "countryCode":"",
                "countryCn":""
            }
        ]
    }
}

Last updated