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

# Delete coupon

> Delete a coupon

## Endpoint

```
DELETE https://api.partnero.com/v1/coupons/{uuid_code}
```

## Path Parameters

| Parameter   | Type   | Required | Description                |
| ----------- | ------ | -------- | -------------------------- |
| `uuid_code` | string | Yes      | Coupon's unique identifier |

## Request

```bash cURL theme={null}
curl --location --request DELETE 'https://api.partnero.com/v1/coupons/coupon_123' \
  --header 'Authorization: Bearer YOUR_API_KEY'
```

## Response

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "status": 1,
      "message": "Coupon deleted in the app successfully.",
      "synchronization_enabled": false,
      "synchronization_successful": false,
      "synchronization_message": ""
    }
  }
  ```
</ResponseExample>

<Warning>
  Deleting a coupon will also remove all associated promotion codes.
</Warning>
