# Get Order Packages

## Overview

You can use this endpoint to retrieve the packages of a single existing sales order. If an order has a lot of packages, retrieving all of them in a single call could be resource-consuming. That’s why you have the option for pagination.

To consume this endpoint, you must be an [Authenticated User](https://developer.sellercloud.com/dev-article/authentication/). As soon as you receive a valid token, you need to pass it to the call. Additionally, you need a valid Sellercloud ID of an existing order.

## Endpoint

The endpoint for the **XX** server would be:

`https://xx.api.sellercloud.com/rest/api/Orders/Packages`

For your server, the 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**  
- **Query Parameters**:

| **Parameter** | **Data Type** | **Description** | **Is Required** |
| --- | --- | --- | --- |
| id | integer | The Sellercloud ID of an existing sales order. | Yes |
| pageNumber | integer | Page number that will be retrieved. | Yes |
| pageSize | integer | Number of order packages per page. | Yes |

## Response

- If the user is authenticated and provides a valid page number and page size, then the response will be **Status Code 200 => OK** and order packages metadata in JSON format.
- If the user is not authenticated, then the response will be **Status Code 401 => Not Valid Token.**
- In case of an error, the response will be **Status Code 500 => Internal Server Error.**

## Response Body

```json
{
  "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": "2026-07-17T13:50:39.557Z",
      "DeliveryDate": "2026-07-17T13:50:39.557Z",
      "DeliveryStatus": 0,
      "DeclaredValue": 0,
      "Items": [
        {
          "PackageID": 0,
          "OrderItemID": 0,
          "OrderItemBundleItemID": 0,
          "IsKitParent": true,
          "ProductID": "string",
          "Qty": 0,
          "QtyShipped": 0,
          "ItemName": "string"
        }
      ],
      "EnableOrderShipmentTrackingAPI": true,
      "CWAPackagingType": "string"
    }
  ],
  "TotalResults": 0
}
```
