## Overview

This endpoint allows you to pull a single existing **Warehouse Inventory Transfer (WITR)**. To consume it, you must:

- Be an authenticated user.

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

Once you authenticate and receive a valid token, it must be passed on to the call.

### Endpoint

Example for such endpoint for **XX** server:

https://xx.api.sellercloud.com/rest/api/WarehouseInventoryTransfers/{id}

For your server endpoint will be:

​https://{your_server_id}.api.sellercloud.com/rest/api/WarehouseInventoryTransfers/{id}

### Request

- Method Type: **HttpGet**  
- Authorization: Use **Bearer Token** (where ‘Token’ is the token received from the token authentication)  
- Header info: **Content-Type: application/json**  
- Parameters:

|     |     |     |     |
| --- | --- | --- | --- |
| **Parameters** | **Data Type** | **Description** | **Is Required** |
| ID | integer | The ID of an existing Warehouse Inventory Transfer. | Yes |

### Response

- If the user is authenticated, then the response will be **Status Code 200 => OK** and the WITR data in JSON format in the response body.
- 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
{
  "ID": 0,
  "Title": "string",
  "Status": 0,
  "CompanyID": 0,
  "FromWarehouseID": 0,
  "InterimWarehouseID": 0,
  "ToWarehouseID": 0,
  "Notes": "string",
  "CreatedOn": "2025-06-27T07:51:09.794Z",
  "RequestedOn": "2025-06-27T07:51:09.794Z",
  "ShippedOn": "2025-06-27T07:51:09.794Z",
  "ReceivedOn": "2025-06-27T07:51:09.794Z"
}
```
