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

# Delete Discount

> Delete a vendor discount code

<Note>
  **V2 Alpha** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Permanently delete a discount code owned by the authenticated vendor.

## Path Parameters

<ParamField path="discountId" type="string" required>
  Discount ObjectId.
</ParamField>

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "deleted": true
  }
}
```

## Example

```bash theme={null}
curl -X DELETE https://staging-api.puppetvendors.com/discounts/507f1f77bcf86cd799439011 \
  -H "x-access-token: YOUR_VENDOR_JWT_TOKEN"
```
