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

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
WarehouseId string

String length: between 0 and 30

Required

US

Sku string

None.

DateRangeCovered string

None.

2020/6/11 00:00:00

PageIndex integer

Range: between 0 and 2147483647

1

PageSize integer

Range: between 0 and 100

5

Request in JSON
{
  "WarehouseId": "sample string 1",
  "Sku": "sample string 2",
  "DateRangeCovered": "sample string 3",
  "PageIndex": 1,
  "PageSize": 1
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
PageIndex integer

None.

PageSize integer

None.

TotalCount integer

None.

TotalPage integer

None.

DateRangeCovered string

None.

WarehouseId string

None.

InventoryAgeDetails Collection of InventoryAgeDetailInfo

None.

Response in 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"
    }
  ]
}