# Delete a subscription discount

Removes the currently applied discount on a subscription.

## Returns

An object with a deleted flag set to true upon success. This call returns [an error](https://docs.stripe.com/api/discounts/subscription_delete.md#errors) otherwise, such as if no discount exists on this subscription.

```curl
curl -X DELETE https://api.stripe.com/v1/subscriptions/{{SUBSCRIPTION_ID}}/discount \
  -u "<<YOUR_SECRET_KEY>>" \
  -H "Stripe-Version: 2025-09-30.clover"
```

### Response

```json
{
  "object": "discount",
  "deleted": true
}
```
