查询某个仓库的仓储Sku列表


GET https://openapi.chukou1.cn:83/v1/storageSkus?WarehouseId={WarehouseId}&PageIndex={PageIndex}&PageSize={PageSize}&Sorting={Sorting}
接口说明: 查询某个仓库的仓储Sku列表

输入参数

URI Parameters
名称类型格式要求是否必须描述示例值
WarehouseId string

长度: 0 ~ 30

必须

仓库Id

US

PageIndex integer

范围: 0 ~ 2147483647

当前页码

1

PageSize integer

范围: 0 ~ 100

分页大小

5

Sorting StorageSkuSortingType

None.

排序

SkuAsc

返回结果

名称类型格式要求是否必须描述示例值
PageIndex integer

None.

当前页码

1

PageSize integer

None.

分页大小

5

TotalCount integer

None.

总条目数

14

Skus Collection of StorageSkuDto

None.

Sku列表

返回结果的json形式
{
  "PageIndex": 1,
  "PageSize": 2,
  "TotalCount": 3,
  "Skus": [
    {
      "WarehouseId": "sample string 1",
      "Sku": "sample string 2",
      "Ck1Sku": "sample string 3",
      "StorageNo": "sample string 4",
      "Weight": 5,
      "Length": 6,
      "Width": 7,
      "Height": 8,
      "DeclareName": "sample string 9",
      "DeclareNameCn": "sample string 10",
      "DeclareValue": 11,
      "ProductFlag": "Simple",
      "ProductAttribute": "GeneralCargo",
      "TotalStockQty": 12,
      "AvailStockQty": 13,
      "InTransitStockQty": 14,
      "CreateTime": "sample string 15"
    },
    {
      "WarehouseId": "sample string 1",
      "Sku": "sample string 2",
      "Ck1Sku": "sample string 3",
      "StorageNo": "sample string 4",
      "Weight": 5,
      "Length": 6,
      "Width": 7,
      "Height": 8,
      "DeclareName": "sample string 9",
      "DeclareNameCn": "sample string 10",
      "DeclareValue": 11,
      "ProductFlag": "Simple",
      "ProductAttribute": "GeneralCargo",
      "TotalStockQty": 12,
      "AvailStockQty": 13,
      "InTransitStockQty": 14,
      "CreateTime": "sample string 15"
    }
  ]
}