查询库龄


POST http://openapi.ck1info.com/v1/inventoryAgeDetail

输入参数

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

长度: 0 ~ 30

必须

仓库Id

US

Sku string

None.

Sku

DateRangeCovered string

None.

查询库龄日期,默认是当天

2020/6/11 00:00:00

PageIndex integer

范围: 0 ~ 2147483647

当前页码,默认:1

1

PageSize integer

范围: 0 ~ 100

分页大小,默认:20

5

输入参数的json形式
{
  "WarehouseId": "sample string 1",
  "Sku": "sample string 2",
  "DateRangeCovered": "sample string 3",
  "PageIndex": 1,
  "PageSize": 1
}

返回结果

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

None.

PageSize integer

None.

TotalCount integer

None.

TotalPage integer

None.

DateRangeCovered string

None.

WarehouseId string

None.

InventoryAgeDetails Collection of InventoryAgeDetailInfo

None.

返回结果的json形式
{
  "PageIndex": 1,
  "PageSize": 2,
  "TotalCount": 3,
  "TotalPage": 4,
  "DateRangeCovered": "sample string 5",
  "WarehouseId": "sample string 6",
  "InventoryAgeDetails": [
    {
      "Sku": "sample string 1",
      "StorageNo": "sample string 2",
      "CurrentAmount": 3,
      "PutawayDate": "sample string 4",
      "PutawayAmount": 5,
      "AllocatedAmount": 6,
      "AgeDays": "sample string 7"
    },
    {
      "Sku": "sample string 1",
      "StorageNo": "sample string 2",
      "CurrentAmount": 3,
      "PutawayDate": "sample string 4",
      "PutawayAmount": 5,
      "AllocatedAmount": 6,
      "AgeDays": "sample string 7"
    }
  ]
}