### Overview

This endpoint allows you to change the general status of a single existing **Warehouse Inventory Transfer (WITR)** from **Requested** to **Shipped.** 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/)

As soon as you authenticate and receive a valid token, it needs to be passed to the service call.

### Endpoint

An example of such an endpoint for **XX** server is:

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

For your server, the endpoint will be:

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

### Request

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

|     |     |     |     |
| --- | --- | --- | --- |
| **Parameter** | **Data Type** | **Description** | **Is Required** |
| id | integer | The ID of an existing WITR with its status currently set to **Requested.** | yes |

### Response

- If the user is authenticated, 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 error, the response will be **Status Code 500 => Internal Server Error**
