-
开发者必读
查询库存变更记录
POST http://openapi.ck1info.com/v1/InventoryChangeRecord
接口说明: 查询库存变更记录输入参数
Body Parameters
名称 类型 格式要求 是否必须 描述 示例值 BeginDateTime date None.
开始时间
2021/8/11
EndDateTime date None.
结束时间
2021/8/12
Sku string None.
必须
Sku
bag-y001
StorageNo string None.
库存编码
YY09UIY987985
WarehouseCode string None.
仓库代码
US
PageIndex integer 范围: 0 ~ 2147483647
当前页码,默认:1
1
PageSize integer 范围: 0 ~ 100
分页大小,默认:20
5
{ "BeginDateTime": "2024-11-14T09:58:11.817+08:00", "EndDateTime": "2024-11-14T09:58:11.817+08:00", "Sku": "sample string 3", "StorageNo": "sample string 4", "WarehouseCode": "sample string 5", "PageIndex": 1, "PageSize": 1 }
返回结果
名称 类型 格式要求 是否必须 描述 示例值 PageIndex integer None.
当前页码
1
PageSize integer None.
分页大小
5
TotalCount integer None.
总条目数
14
TotalPage integer None.
总页数
3
InventoryChangeRecordList Collection of InventoryChangeRecord None.
{ "PageIndex": 1, "PageSize": 2, "TotalCount": 3, "TotalPage": 4, "InventoryChangeRecordList": [ { "Sku": "sample string 1", "StorageNo": "sample string 2", "WarehouseCode": "sample string 3", "CreateTime": "sample string 4", "Operation": "Manual", "Amount": 5, "AmountOrg": 6, "AmountTotal": 7, "Remark": "sample string 8" }, { "Sku": "sample string 1", "StorageNo": "sample string 2", "WarehouseCode": "sample string 3", "CreateTime": "sample string 4", "Operation": "Manual", "Amount": 5, "AmountOrg": 6, "AmountTotal": 7, "Remark": "sample string 8" } ] }