Get Order Packages

Overview

In order to get packages, you can do it in 2 ways:

  • By calling endpoint for getting packages for an order. That will be explain in this article.
  • By calling endpoint for get whole info for single order. More information in here.

Endpoint that is presented in this article is used for getting packages for a single order using pagination. If order has a lot of packages retrieving all in a single call could be resource consuming. That’s why SellerCloud Rest API gives an option for pagination. In that way you can retrieve top 5 packages etc.

In order to consume the endpoint you must:

  • Be authenticated user

For information on how you can authenticate, see: Authentication

As soon as you do authentication and receive a valid token, it needs to be passed on the call when updating the order.

  • Have valid ID of an existing order

Endpoint

Example for such endpoint for TT server is https://tt.api.sellercloud.com/rest/api/Orders/Packages

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Orders/Packages

Request

  • Method Type: HttpGet
  • Authorization: Use Bearer Token + token received from token authentication
  • Header info: Content-Type: application/json
  • Body data:
    Parameter Data Type Description Is Required
    id integer ID of existing order. Yes
    pageNumber integer Number of the page. Yes
    pageSize integer Number of packages per page. Yes

Response

  • If server error appears, then response will be with status code 500 => Internal Server Error
  • If getting order packages is successful, response will be with following format:
{
  "Results": [
    {
      "ShippingWeight": {
        "Pounds": 0,
        "Ounces": 0
      },
      "ID": 0,
      "TrackingNumber": "string",
      "TrackingNumberUrl": "string",
      "TrackingNumberText": "string",
      "Length": 0,
      "Width": 0,
      "Height": 0,
      "Weight": 0,
      "ShippingCost": 0,
      "FinalShippingFee": 0,
      "EstimatedDeliveryDate": "2024-02-26T13:14:31.234Z",
      "DeliveryDate": "2024-02-26T13:14:31.234Z",
      "DeliveryStatus": 0,
      "DeclaredValue": 0,
      "Items": [
        {
          "PackageID": 0,
          "OrderItemID": 0,
          "OrderItemBundleItemID": 0,
          "IsKitParent": true,
          "ProductID": "string",
          "Qty": 0,
          "ItemName": "string"
        }
      ],
      "EnableOrderShipmentTrackingAPI": true,
      "CWAPackagingType": "string"
    }
  ],
  "TotalResults": 0
}

Was this article helpful?

Next
Update Tracking Of Single Package