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

# Delete Shipping Zone

> Delete a shipping zone

## Path Parameters

<ParamField path="zone_id" type="string" required>
  The shipping zone ID (UUID) to delete.
</ParamField>

## Response

Returns the standard response envelope.

<ResponseExample>
  ```json theme={null}
  {
    "status": 200,
    "state": "success",
    "message": "Shipping zone deleted successfully"
  }
  ```
</ResponseExample>

## Error Response

```json theme={null}
{
  "status": 404,
  "state": "error",
  "message": "Shipping zone not found",
  "data": null
}
```
