## Overview

The endpoint presented in this article is used for deleting items from an existing purchase order.

To consume the endpoint, you must:

- Be 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 needs to be passed on the call when deleting items.

### Endpoint

Example of such endpoint for TT server is

```
https://tt.api.sellercloud.com/rest/api/PurchaseOrders/{POid}/Items
```

For your server endpoint will be:

```
https://{your_server_id}.api.sellercloud.com/rest/api/PurchaseOrders/{POid}/Items
```

### Request

- **Method Type**:  HttpDelete  
- **Authorization**: Use  **Bearer Token**  + token received from token authentication  
- **Header info**:  **Content-Type: application/json**  
- **Parameters**: ID of the Purchase Order; Array of PO items IDs to be deleted.

| **Parameter** | **Description** |
| --- | --- |
| PoItemsIDs | List of integers representing purchase order items IDs. |

### Response

- If a server error occurs, then the response will have status code 400 => Bad Request
- If the request is successful, response will have status code http 200 OK, with:

```
"Items deleted successfully."
```
