GET api/Inventory/Packages/Filters/{inventoryId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| inventoryId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
InventoryPackageListFiltersOutputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Statuses | Collection of string |
None. |
|
| PackageTypes | Collection of string |
None. |
|
| MaxLength | decimal number |
None. |
|
| MinLength | decimal number |
None. |
|
| MaxWidth | decimal number |
None. |
|
| MinWidth | decimal number |
None. |
|
| MaxHeight | decimal number |
None. |
|
| MinHeight | decimal number |
None. |
|
| MaxWeight | decimal number |
None. |
|
| MinWeight | decimal number |
None. |
|
| MaxVolume | decimal number |
None. |
|
| MinVolume | decimal number |
None. |
|
| ReceivedBy | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Statuses": [
"sample string 1",
"sample string 2"
],
"PackageTypes": [
"sample string 1",
"sample string 2"
],
"MaxLength": 1.1,
"MinLength": 1.1,
"MaxWidth": 1.1,
"MinWidth": 1.1,
"MaxHeight": 1.1,
"MinHeight": 1.1,
"MaxWeight": 1.1,
"MinWeight": 1.1,
"MaxVolume": 1.1,
"MinVolume": 1.1,
"ReceivedBy": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<InventoryPackageListFiltersOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.WMS.InputOutputModels">
<MaxHeight>1.1</MaxHeight>
<MaxLength>1.1</MaxLength>
<MaxVolume>1.1</MaxVolume>
<MaxWeight>1.1</MaxWeight>
<MaxWidth>1.1</MaxWidth>
<MinHeight>1.1</MinHeight>
<MinLength>1.1</MinLength>
<MinVolume>1.1</MinVolume>
<MinWeight>1.1</MinWeight>
<MinWidth>1.1</MinWidth>
<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>
<ReceivedBy xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ReceivedBy>
<Statuses xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Statuses>
</InventoryPackageListFiltersOutputModel>
text/html
Sample:
{"Statuses":["sample string 1","sample string 2"],"PackageTypes":["sample string 1","sample string 2"],"MaxLength":1.1,"MinLength":1.1,"MaxWidth":1.1,"MinWidth":1.1,"MaxHeight":1.1,"MinHeight":1.1,"MaxWeight":1.1,"MinWeight":1.1,"MaxVolume":1.1,"MinVolume":1.1,"ReceivedBy":["sample string 1","sample string 2"]}