Notification Type- Order Shipped
Once an order is fully shipped out in Best Inc. warehouse, a shipment notification will be generated accordingly and available to be accessed by any notification API.
When you pull an Order Shipped notification, the special content under data node will be provided to indicate the detail packing and palletization information, refer to following section for details.
Notification Data
Attribute List
Element Name | Data Type | Description |
---|---|---|
Data/Carrier | String | The name of the carrier |
Data/MasterTrackingNumber | String | The first tracking number of the order |
Data/TrackingNumbers | Array<String> | The tracking numbers that used to ship the order. |
Example
The following example will be returned for Get Notification of Order Shipped
{ "id": 116137, "eventType": "OrderShipped", "eventTime": "2019-11-18T21:05:15+00:00", "customerCode": "TEST", "warehouseCode": "USNJ01", "transactionId": 1092748, "transactionNumber": "S133184", "data": { "carrier": "UPS", "masterTrackingNumber": "92748909840342443400034074", "trackingNumbers": [ "92748909840342443400034074", "92748909840342443400034164" ] }, "status": "Acknowledged", "acknowledgedTime": "2019-11-18T21:10:44-05:00" }