GET api/Inventory/Filters
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
InventoryItemListFiltersOutputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MaxTotalWeight | decimal number |
None. |
|
| MinTotalWeight | decimal number |
None. |
|
| MaxTotalVolume | decimal number |
None. |
|
| MinTotalVolume | decimal number |
None. |
|
| MaxTotalLength | decimal number |
None. |
|
| MinTotalLength | decimal number |
None. |
|
| MaxTotalWidth | decimal number |
None. |
|
| MinTotalWidth | decimal number |
None. |
|
| MaxTotalHeight | decimal number |
None. |
|
| MinTotalHeight | decimal number |
None. |
|
| MaxAmountPerPallet | decimal number |
None. |
|
| MinAmountPerPallet | decimal number |
None. |
|
| MaxTotalPieces | integer |
None. |
|
| MinTotalPieces | integer |
None. |
|
| MaxTotalQuantity | integer |
None. |
|
| MinTotalQuantity | integer |
None. |
|
| ItemTypes | Collection of string |
None. |
|
| PackageTypes | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"MaxTotalWeight": 1.0,
"MinTotalWeight": 1.0,
"MaxTotalVolume": 1.0,
"MinTotalVolume": 1.0,
"MaxTotalLength": 1.0,
"MinTotalLength": 1.0,
"MaxTotalWidth": 1.0,
"MinTotalWidth": 1.0,
"MaxTotalHeight": 1.0,
"MinTotalHeight": 1.0,
"MaxAmountPerPallet": 1.0,
"MinAmountPerPallet": 1.0,
"MaxTotalPieces": 1,
"MinTotalPieces": 1,
"MaxTotalQuantity": 1,
"MinTotalQuantity": 1,
"ItemTypes": [
"sample string 1",
"sample string 2"
],
"PackageTypes": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<InventoryItemListFiltersOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.WMS.InputOutputModels">
<ItemTypes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ItemTypes>
<MaxAmountPerPallet>1</MaxAmountPerPallet>
<MaxTotalHeight>1</MaxTotalHeight>
<MaxTotalLength>1</MaxTotalLength>
<MaxTotalPieces>1</MaxTotalPieces>
<MaxTotalQuantity>1</MaxTotalQuantity>
<MaxTotalVolume>1</MaxTotalVolume>
<MaxTotalWeight>1</MaxTotalWeight>
<MaxTotalWidth>1</MaxTotalWidth>
<MinAmountPerPallet>1</MinAmountPerPallet>
<MinTotalHeight>1</MinTotalHeight>
<MinTotalLength>1</MinTotalLength>
<MinTotalPieces>1</MinTotalPieces>
<MinTotalQuantity>1</MinTotalQuantity>
<MinTotalVolume>1</MinTotalVolume>
<MinTotalWeight>1</MinTotalWeight>
<MinTotalWidth>1</MinTotalWidth>
<PackageTypes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</PackageTypes>
</InventoryItemListFiltersOutputModel>
text/html
Sample:
{"MaxTotalWeight":1.0,"MinTotalWeight":1.0,"MaxTotalVolume":1.0,"MinTotalVolume":1.0,"MaxTotalLength":1.0,"MinTotalLength":1.0,"MaxTotalWidth":1.0,"MinTotalWidth":1.0,"MaxTotalHeight":1.0,"MinTotalHeight":1.0,"MaxAmountPerPallet":1.0,"MinAmountPerPallet":1.0,"MaxTotalPieces":1,"MinTotalPieces":1,"MaxTotalQuantity":1,"MinTotalQuantity":1,"ItemTypes":["sample string 1","sample string 2"],"PackageTypes":["sample string 1","sample string 2"]}