Order Object
WarehouseName
- Description: The warehouse descriptive name.
- Data Type: String
- Data Length: 100
- Required: True
OrderNumber
- Description: A unique alpha-numeric value to identify this order in the warehouse.
- Data Type: String
- Data Length: 50
OrderType
- Description: A value representing the order type.
- Data Type: Number
- Valid Values:
- 1-(Sales Order)
- 2-(Credit Order)
- 3-(No Split Order)
- 4-(Wave Set)
- 5-(Transfer)
- 6-(Job)
- 7-(Manufacturing Order)
- 8-(Consumption)
OrderComment
- Description: The comments to be associated with the order.
- Data Type: String
- Note: Can be defaulted to an empty string.
CustomerPoNumber
- Description: The customer’s PO Number for the order.
- Data Type: String
- Data Length: 50
- Note: Can default to empty string.
VendorShipmentNumber
- Description: The vendors shipping number.
- Data Type: String
- Data Length: 50
- Note: Can default to empty string.
RouteNumber
- Description: A value that references an existing route in WithoutWire.
- Data Type: Number
- Note: If this value is not provided a default will be used, if the route provided does not exist it will be created with default values.
RouteDesciption
- Description: The description of the route.
- Data Type: String
- Data Length: 50
- Note: Can be defaulted to an empty string.
DestinationWarehouseName
- Description: The end destination warehouse descriptive name.
- Data Type: String
- Data Length: 100
- Note: If the order type is marked as “TR” (Transfer Order) supply a DestinationWarehouseName name for WithoutWire to transfer the inventory to when the order is completed.
DeliveryDate
- Description: The date in which the order will be delivered.
- Data Type: Date
- Note: If an empty string then date will be set to the imported date.
ShipDate
- Description: The date in which the order will be shipped.
- Data Type: Date
- Note: If an empty string then date will be set to the imported date.
DateCreated
- Description: The date the order was created.
- Data Type: Date
- Note: If an empty string then date will be set to the imported date.
LoadDate
- Description: The date the order was loaded.
- Data Type: Date
- Note: Can default to 0001-01-01T00:00:00.
PrintDate
- Description: The date the order was printed.
- Data Type: Date
- Note: Can default to 0001-01-01T00:00:00.
ShippingMethodName
- Description: The value that will uniquely identify the carrier and carrier shipping method.
- Data Type: String
- Data Length: 50
TrackingNumber
- Description: The shipping carrier tracking number.
- Data Type: String
- Note: Export Only
ShippingCost
- Description: The total cost of the shipment for the order.
- Data Type: Decimal
- Note: Export Only
ShippingWeight
- Description: The total weight of shipment for the order.
- Data Type: Decimal
- Note: Export Only
- Description: The customer information.
- Data Type: Object
- Description: The items in the order to be picked
- Data Type: Array
Example
[{ "WarehouseName":"Warehouse", "OrderNumber":"ExampleOrder001", "OrderType":"SO", "OrderComment":"This is the first test order.", "CustomerPoNumber":"", "VendorShipmentNumber":"", "RouteNumber":"9999", "RouteDescription":"Downtown Minneapolis", "DestinationWarehouseName":"", "DeliveryDate":"2014-06-20T02:39:35.2682378-05:00", "ShipDate":"0001-01-01T00:00:00", "DateCreated":"0001-01-01T00:00:00", "LoadDate":"0001-01-01T00:00:00", "PrintDate":"0001-01-01T00:00:00", "ShippingMethodName":"FdxGroud", "TrackingNumber":"", "ShippingWeight":0.0, "ShippingCost":0.0, "Customer":{ "CustomerName":"Test Customer.", "CustomerAddress1":"333 Washington Avenue", "CustomerAddress2":"", "CustomerCity":"Minneapolis", "CustomerState":"MN", "CustomerZipCode":"55401", "CustomerCountry":"USA", "CustomerShortDesc":"", "CustomerNumber":"Customer001", "CustomerPhone":"612.343.0404", "CustomerShippingAddresses":[ { "CustomerShipName":"Test Ship To Customer", "CustomerShipAddress1":"333 Washington Avenue", "CustomerShipAddress2":"", "CustomerShipCity":"Minneapolis", "CustomerShipState":"MN", "CustomerShipZipCode":"55401", "CustomerShipZip5":"55401", "CustomerShipPhone":"612.343.0404", "CustomerShipFax":"", "CustomerShipCountry":"USA", "CustomerShipTo":"Primary" } ] }, "LineItems":[ { "LineNumber":1, "ItemNumber":"ItemExample1", "CoreItemType":"Basic", "QuantityOrdered":20, "LineItemComment":"Example line comment", "UomType":{ "UomDesc":"EA" } } ] }]