POST api/FrontierWeb/DowEdiBooking/GetAvailableWarehouseInventoryList
Returns a list of the available Warehouse Inventory list.
Request Information
URI Parameters
None.
Body Parameters
GetAvailableWarehouseInventoryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyCode | string |
None. |
|
| CostCenterId | string |
None. |
|
| CustomerId | string |
None. |
|
| ProductId | string |
None. |
|
| Lot | string |
None. |
|
| PackageCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompanyCode": "sample string 1",
"CostCenterId": "sample string 2",
"CustomerId": "sample string 3",
"ProductId": "sample string 4",
"Lot": "sample string 5",
"PackageCode": "sample string 6"
}
text/html
Sample:
{"CompanyCode":"sample string 1","CostCenterId":"sample string 2","CustomerId":"sample string 3","ProductId":"sample string 4","Lot":"sample string 5","PackageCode":"sample string 6"}
Response Information
Resource Description
AvailableWarehouseInventory List
Collection of AvailableWarehouseInventory| Name | Description | Type | Additional information |
|---|---|---|---|
| CostCenterId | string |
None. |
|
| WarehouseId | string |
None. |
|
| ProductId | string |
None. |
|
| Lot | string |
None. |
|
| FamilyId | string |
None. |
|
| UnitWeight | decimal number |
None. |
|
| InboundDate | date |
None. |
|
| AvailableQuantity | decimal number |
None. |
|
| AvailableWeight | decimal number |
None. |
|
| OnHandPackageQuantity | decimal number |
None. |
|
| AllocatedQuantity | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CostCenterId": "sample string 1",
"WarehouseId": "sample string 2",
"ProductId": "sample string 3",
"Lot": "sample string 4",
"FamilyId": "sample string 5",
"UnitWeight": 1.0,
"InboundDate": "2025-11-05T15:04:27.3243294-06:00",
"AvailableQuantity": 7.0,
"AvailableWeight": 8.0,
"OnHandPackageQuantity": 9.0,
"AllocatedQuantity": 10.0
},
{
"CostCenterId": "sample string 1",
"WarehouseId": "sample string 2",
"ProductId": "sample string 3",
"Lot": "sample string 4",
"FamilyId": "sample string 5",
"UnitWeight": 1.0,
"InboundDate": "2025-11-05T15:04:27.3243294-06:00",
"AvailableQuantity": 7.0,
"AvailableWeight": 8.0,
"OnHandPackageQuantity": 9.0,
"AllocatedQuantity": 10.0
}
]
text/html
Sample:
[{"CostCenterId":"sample string 1","WarehouseId":"sample string 2","ProductId":"sample string 3","Lot":"sample string 4","FamilyId":"sample string 5","UnitWeight":1.0,"InboundDate":"2025-11-05T15:04:27.3243294-06:00","AvailableQuantity":7.0,"AvailableWeight":8.0,"OnHandPackageQuantity":9.0,"AllocatedQuantity":10.0},{"CostCenterId":"sample string 1","WarehouseId":"sample string 2","ProductId":"sample string 3","Lot":"sample string 4","FamilyId":"sample string 5","UnitWeight":1.0,"InboundDate":"2025-11-05T15:04:27.3243294-06:00","AvailableQuantity":7.0,"AvailableWeight":8.0,"OnHandPackageQuantity":9.0,"AllocatedQuantity":10.0}]