# Delete Shipment

## /shipments

<mark style="color:red;">`DELETE`</mark> `https://api.terminal.africa/v1/shipments`

This endpoint allows you to delete a draft shipment.

#### Headers

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Set value to `Bearer SECRET_KEY` |
| Content-Type<mark style="color:red;">\*</mark>  | string | Set value to `application/json`  |

#### Request Body

| Name                                           | Type   | Description            |
| ---------------------------------------------- | ------ | ---------------------- |
| shipment\_id<mark style="color:red;">\*</mark> | string | Unique id of shipment. |

{% tabs %}
{% tab title="200 Shipment deleted successfully." %}

```
{
	status: true,
	message: 'Shipment deleted successfully',
	data: null
}
```

{% endtab %}
{% endtabs %}
