Bin Object
WarehouseName
- Description: The name of the warehouse where the bin resides.
- Data Type: String
- Data Length: 100
- Required: Yes
BinNumber
- Description: An alpha-numeric value that uniquely identifies the bin.
- Data Type: String
- Data Length: 50
- Required: Yes
BinDescription
- Description: A short description of the bin.
- Data Type: String
- Data Length: 50
- Required: No
- Note: Will defaulted to the bin number when left empty or null.
BinType
- Description: The specific bin type of this bin.
- Data Type: String
- Values: Inventory, Damage, Manufacturing, Receiving, QA, LicensePlate, Overstock, Staging, Hold, and Exception
- Required: Yes
- Note: Will defaulted to Inventory when left empty or null.
RunNumber
- Description: If the bin has a BinType of “LicensePlate” run number can be used in combination with Manufacturing
- Data Type: String
- Data Length: 50
- Required: No
- Note: Read only
ParentBin
- Description: License Plates in WithoutWire can be nested inside other bins or license plates.
- Data Type: String
- Data Length: 50
- Required: No
- Note: If the BinType is “LicensePlate” specify a location for the License plate. This would be the parent bin of the license plate.
PickSequence
- Description: The order of items on the picking screen can be controlled by the Pick Sequence of the bin where the inventory resides.
- Data Type: Number
- Required: Yes
ActiveInd
- Description: Set the bin to active or inactive.
- Values: true, false
- Required: Yes
Example
[ { "WarehouseName": "Warehouse", "BinNumber": "Bin-001", "BinDescription": "The first bin in the first row.", "BinType": "Inventory", "RunNumber": null, "ParentBin": null, "PickSequence": 1, "ActiveInd": true }, { "WarehouseName": "Warehouse", "BinNumber": "Bin-002", "BinDescription": "The second bin in the first row.", "BinType": "Inventory", "RunNumber": null, "ParentBin": null, "PickSequence": 2, "ActiveInd": true } ]