> ## Documentation Index
> Fetch the complete documentation index at: https://developers.artport.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Shipment

export const action_0 = "delete"

### Overview

This endpoint can be used to delete a shipment.

Endpoint: `/api/v1/shipments/{shipment_id}`

Method: `DELETE`

### URL Parameters

<ResponseField name="shipment_id" type="integer" required>
  The ID of the shipment you wish to { action_0 }.
</ResponseField>

### Response

If the shipment is successfully deleted, the API will return a `204 No Content` status code.

The response will not contain any content.

<ResponseExample>
  ```text 204 theme={"system"}
  No Content
  ```
</ResponseExample>
