Notification Type- Order Routing
For the “Routing” type order, after it’s packed and palletized in Best Inc. warehouse, an order routing request notification will be generated accordingly and available to be accessed by any notification API.
When you pull an Order Routing Request notification, the special content under data node will be provided, refer to following section for details.
Notification Data
Attribute List
Element Name | Data Type | Description |
---|---|---|
Data/OrderNumber | String | Specified unique number to identify your order. |
Data/PONumber | String | Specified unique number to identify the purchase order if available. |
Data/SalesChannel | String | The name of the sales channel or retailer of the order. |
Data/TotalPalletCount | Integer | Shipped total quantity for pallet |
Data/TotalCartonCount | Integer | Shipped total quantity for carton |
Data/TotalWeight | Decimal | Shipment total weight |
Data/WeightUnit | String | Always “Pound” |
Data/Packages | Array<Object> | The package list of the order. |
Data/Packages/Id | Integer | The internal ID of the package. |
Data/Packages/PackageNumber | String | Package number. |
Data/Packages/PackageSSCC | String | The SSCC (Serial Shipping Container Code) of the current package. |
Data/Packages/BoxCode | String | The packing material used for the package. |
Data/Packages/Length | Decimal | Package dimension: Length |
Data/Packages/Width | Decimal | Package dimension: Width |
Data/Packages/Height | Decimal | Package dimension: Height |
Data/Packages/LengthUnit | String | Value is always “Inch” right now. |
Data/Packages/Weight | Decimal | Package total weight |
Data/Packages/WeightUnit | String | Value is always “Pound” right now. |
Data/Packages/Details | Array<Object> | The SKU list in the package. |
Data/Packages/Details/Id | Integer | The internal ID of the record. |
Data/Packages/Details/SKU | String | The number of the SKU. |
Data/Packages/Details/Quantity | Integer | The quantty of the SKU. |
Data/Pallets | Array<Object> | The pallet list of the order. |
Data/Pallets/Id | Integer | The internal ID of the pallet. |
Data/Pallets/PalletNumber | String | The pallet ID number of the pallet. |
Data/Pallets/PalletSSCC | String | The SSCC (Serial Shipping Container Code) of the current pallet. |
Data/Pallets/Length | Decimal | Pallet dimension: Length |
Data/Pallets/Width | Decimal | Pallet dimension: Width |
Data/Pallets/Height | Decimal | Pallet dimension: Height |
Data/Pallets/LengthUnit | String | Value is always “Inch” right now. |
Data/Pallets/Weight | Decimal | Pallet total weight |
Data/Pallets/WeightUnit | String | Value is always “Pound” right now. |
Data/Pallets/CartonCount | Integer | The quantity of the packages that is included in this pallet |
Data/Pallets/PackageNumbers | Array<String> | The package numbers that is included in the current pallet. |
Example
The following example will be returned for Get Notification of Order Routing
{ "id": 116137, "eventType": "OrderRoutingRequest", "eventTime": "2019-08-18T21:05:15+00:00", "customerCode": "TEST", "warehouseCode": "USNJ01", "transactionId": 1092748, "transactionNumber": "ST0113221", "data": { "orderNumber": "K734537", "poNumber": "P233677", "salesChannel": "Sephora", "totalPalletCount": 1, "totalCartonCount": 2, "totalWeight": 88.8, "weightUnit": "Pound", "packages": [ { "id": 69294, "packageNumber": "ST0113221-01", "packageSSCC": "00008595280000000467", "boxCode": "SK-53125", "length": 48.0, "width": 41.0, "height": 23.0, "lengthUnit": "Inch", "weight": 48.4, "weightUnit": "Pound", "details": [ { "id": 97105, "sku": "U5536708", "quantity": 20 }, { "id": 97136, "sku": "U5536996", "quantity": 40 } ] }, { "id": 69294, "packageNumber": "ST0113221-02", "packageSSCC": "00008595280000000468", "boxCode": "SK-53125", "length": 46.0, "width": 34.0, "height": 16.0, "lengthUnit": "Inch", "weight": 40.4, "weightUnit": "Pound", "details": [ { "id": 97105, "sku": "U5536708", "quantity": 80 } ] } ], "pallets": [ { "id": 1071, "palletNumber": "PLT-ST0113221-01", "palletSSCC": "00008595280000000029", "length": 48.0, "width": 40.0, "height": 40.0, "lengthUnit": "Inch", "weight": 88.8, "weightUnit": "Pound", "cartonCount": 2, "packageNumbers": [ "ST0113221-01", "ST0113221-02" ] } ] }, "status": "Acknowledged", "acknowledgedTime": "2020-08-18T21:10:44-05:00" }