How Can We Help?
< All Topics
Print

Get Order Packages

Get your Order Packages information by an order number.

  • URL: {API root URL}/orders/{OrderNumber}/packages
  • Method: GET

Request

URL Parameters

Parameter NameRequiredData TypeDescription
OrderNumberYStringThe order number you want to search for getting the package information

Response

Attribute List

Element NameData TypeDescription
packageListArray<Object>List of package.
packageList/idStringBest system internal ID of current package.
packageList/packageNumberStringPackage number of current package.
packageList/customerCodeStringA unique customer code assigned by Best system.
packageList/orderNumberStringYour order number associated with current package.
packageList/warehouseCodeStringIndicate the fulfillment center that processed current package.
packageList/optionSignatureStringIndicate if your package shipped with the option of Signature Required. Available value is None or Required.
packageList/carrierStringName of the carrier who will deliver current package.
packageList/carrierServiceStringService code of the shipping service used for current package.
packageList/carrierServiceTextStringDescription of the carrier shipping service used for current package.
packageList/trackingNumberStringTracking number assigned by carrier to fulfill current order.
packageList/boxCodeStringPacking material spcified for this order.
packageList/lengthStringPackage dimension: Length
packageList/widthStringPackage dimension: Width
packageList/heightStringPackage dimension: Height
packageList/lengthUnitStringThe Unit Of Measure for package dimension.
packageList/weightStringPackage total weight
packageList/weightUnitStringThe Unit Of Measure for item weight.
packageList/shipTimeStringThe date and time when the order is shipped by Best fulfillment center. Fomrat: UTC time zone.
packageList/detailsArray<Object>The list of item under the current package
packageList/details/idStringBest system internal ID of current item.
packageList/details/packageIdStringPackage number of current package. All items shipped in same package will share the same ID.
packageList/details/itemIdStringThe SKU number of current item.
packageList/details/skuStringThe SKU number assigned to current item.
packageList/details/conditionStringThe condition of shipped item. Available values: Good or Damaged
packageList/details/quantityIntegershipped quantity for current item.
packageList/details/batchNumberStringThe Batch Number of current item.
packageList/details/expDateStringThe Expiration Date of the shipped item when applicable.
packageList/details/mfgDateStringThe Manufacture Date of the shipped item when applicable.
packageList/details/countryOfOriginStringThe Country of Origin of the shipped item when applicable.

Response Example

{
    "packageList": [
        {
            "id": 68367,
            "packageNumber": "S002982695-01",
            "customerCode": "USQA",
            "orderNumber": "E-202109231520",
            "warehouseCode": "USCA01",
            "optionSignature": "None",
            "carrier": "UPS",
            "carrierService": "03",
            "carrierServiceText": "Ground",
            "trackingNumber": "1ZR198590396386796",
            "boxCode": "PK04023",
            "length": 8,
            "width": 6.5,
            "height": 3,
            "lengthUnit": "Inch",
            "weight": 0.9,
            "weightUnit": "Pound",
            "shipTime": "2021-09-23T14:34:02+00:00",
            "details": [
                {
                    "id": 95175,
                    "packageId": 68367,
                    "itemId": 49471,
                    "sku": "SKUCARSELW1",
                    "condition": "Good",
                    "quantity": 3,
                    "batchNumber": "B1",
                    "expDate": "2024-08-04",
                    "mfgDate": "2021-09-20",
                    "countryOfOrigin": "CN"
                },
                {
                    "id": 95178,
                    "packageId": 68367,
                    "itemId": 46824,
                    "sku": "Sku1",
                    "condition": "Good",
                    "quantity": 2,
                    "batchNumber": "B2",
                    "expDate": "2024-09-04",
                    "mfgDate": "2021-09-04",
                    "countryOfOrigin": "CN"
                },
                {
                    "id": 95179,
                    "packageId": 68367,
                    "itemId": 46824,
                    "sku": "Sku1",
                    "condition": "Good",
                    "quantity": 3,
                    "batchNumber": "B1",
                    "expDate": "2024-08-04",
                    "mfgDate": "2021-08-04",
                    "countryOfOrigin": "US"
                }
            ]
        },
        {
            "id": 68368,
            "packageNumber": "S002982695-02",
            "customerCode": "USQA",
            "orderNumber": "E-202109231520",
            "warehouseCode": "USCA01",
            "optionSignature": "None",
            "carrier": "UPS",
            "carrierService": "03",
            "carrierServiceText": "Ground",
            "trackingNumber": "1ZR198590396386796-2",
            "boxCode": "PK04023",
            "length": 8,
            "width": 6.5,
            "height": 3,
            "lengthUnit": "Inch",
            "weight": 0.9,
            "weightUnit": "Pound",
            "shipTime": "2021-09-23T14:34:02+00:00",
            "details": [
                {
                    "id": 95176,
                    "packageId": 68368,
                    "itemId": 46824,
                    "sku": "Sku1",
                    "condition": "Good",
                    "quantity": 3,
                    "batchNumber": "B1",
                    "expDate": "2024-08-04",
                    "mfgDate": "2021-08-04",
                    "countryOfOrigin": "US"
                },
                {
                    "id": 95177,
                    "packageId": 68368,
                    "itemId": 49471,
                    "sku": "SKUCARSELW1",
                    "condition": "Good",
                    "quantity": 1,
                    "batchNumber": "B1",
                    "expDate": "2024-08-04",
                    "mfgDate": "2021-09-20",
                    "countryOfOrigin": "CN"
                }
            ]
        }
    ]
}
Previous Query Order List V2.0
Next Cancel Order
Table of Contents