### Overview

You can use this endpoint to retrieve the list of items in a single existing Warehouse Inventory Transfer.

To consume the endpoint, you must:

- Be an authenticated user

For information on how you can authenticate, see: [Authentication](https://developer.sellercloud.com/dev-article/authentication/)

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

### Endpoint

Example for such endpoint for XX server is:

[https://xx.api.sellercloud.com/rest/api/WarehouseInventoryTransfers/{id}/Products](https://tt.api.sellercloud.com/rest/api/Orders/Packages)

For your server endpoint will be:

[https://{your_server_id}.api.sellercloud.com/rest/api/WarehouseInventoryTransfers/{id}/Products](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**  
- Path: The ID of the existing WITR.  
- Body:

|     |     |     |     |
| --- | --- | --- | --- |
| **Parameter** | **Data Type** | **Description** | **Is Required** |
| pageNumber | integer | Number of the page. | Yes |
| pageSize | integer | Number of items per page. | Yes |

### Response Body

```
{
  "Items": [
    {
      "ID": 0,
      "ProductID": "string",
      "ProductName": "string",
      "QtyPerCase": 0,
      "QtyPicked": 0,
      "TransferQty": 0,
      "TotalReceivedQty": 0,
      "QtyInFromWarehouse": 0,
      "QtyInToWarehouse": 0
    }
  ],
  "TotalResults": 0
}
```

### Response

- If the user is authenticated and the request is successful, then the response will be **Status Code 200 => OK**  
- 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**  
- In case of an incorrect request, the response will be with status code **400 Bad Request**
