Item Object
WarehouseName
- Description: The name of the warehouse where the item exists.
- Data Type: String
- Data Length: 100
- Required: Yes
ItemNumber
- Description: An alpha-numeric value that uniquely identifies the item within the warehouse
- Data Type: String
- Data Length: 50
- Required: Yes
ItemDescription
- Description: A name that uniquely identifies an item within the warehouse
- Data Type: String
- Data Length: 101
- Required: Yes
ItemType
- Description: The type of item.
- Data Type: String
- Values: Inventory, Kit, Service, Pallet
- Required: Yes
- Note: If no value is passed ItemType will default to Inventory
ManufactureNumber
- Description: The manufacturer’s Item number
- Data Type: String
- Data Length: 50
- Required: Yes
UpcBarcodeNumber
- Description: the UPC Barcode Number on the items package.
- Data Type: String
- Data Length: 50
- Required: Yes
FullPalletQuantity
- Description: WithoutWire supports pallet splitting.
- Data Type: Number
- Required: Yes
- Note: Supply an integer representing the maximum quantity that can be picked to one pallet.
GrossWeight
- Data Type: Decimal
- Required: Yes
Length
- Data Type: Decimal
- Required: Yes
Width
- Data Type: Decimal
- Required: Yes
Height
- Data Type: Decimal
- Required: Yes
NetWeight
- Data Type: Decimal
- Required: Yes
CoreItemType
- Description: A string value which indicates whether the item is lot tracked, serial tracked, expiration date tracked, or a standard item.
- Values: BASIC, LOT, SERIAL, or DATE
- Data Type: String
- Required: Yes
CycleCountInterval
- Description: WithoutWire can assist in reminding warehouse users that a cycle count is needed.
- Data Type: Number
- Required: Yes
- Note: Enter a value between 0 and 365 to indicate how many cycle counts you would like to perform in this item per year.
BaseUoM
- Description: The base unit of measure for this item
- Data Type: String
- Data Length: 50
- Required: Yes
SignificantDigits
- Description: A number representing the number of decimal places to track for this item.
- Data Type: Number
- Required: Yes
- Note: Must be less than or equal to 5.
ZoneDesc
- Description: The name of the zone where this item resides in the warehouse.
- Data type: String
- Data Length: 50
- Note: Use ‘Default’ if zones are not being used.
BaseConvFactor
- Description: The base unit of measure for this item.
- Data Type: Decimal
- Required: Yes
Example
[
{ "WarehouseName": "Warehouse", "ItemNumber": "Item-03", "ItemDescription": "Bauer Nexus 7000 Skates", "ItemGenericDescription": "Bauer Nexus 7000", "ItemType": "Inventory", "ManufacturerNumber": "", "UpcBarcodeNumber": "", "GrossWeight": 1.0, "FullPalletQuantity": 100, "Length": 1, "Width": 1, "Height": 1, "NetWeight": 1.0, "CoreItemType": "BASIC", "CycleCountInterval": 12, "BaseUom": "EA", "SignificantDigits": 0, "ZoneDesc": "", "BaseConvFactor": 1 }
]