How Can We Help?
< All Topics
Print

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 NameData TypeDescription
Data/CarrierStringThe name of the carrier
Data/MasterTrackingNumberStringThe first tracking number of the order
Data/TrackingNumbersArray<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"
}
Previous Notification Type- ASN Closed
Next Notification Type- Order Routing
Table of Contents