# Remove discount from subscription

`DELETE https://rcur.app/api/v2/subscriptions/{subscriptionId}/discount`

The next payments are the full amount again.

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `subscriptionId` | string | yes |  |

## Example request

```bash
curl -X DELETE https://rcur.app/api/v2/subscriptions/YJRQAMRQ6y/discount \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
```

## Responses

### 204 No content

### 404 Resource not found

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `status` | integer | yes |  |
| `error` | string | yes |  |

```json
{
    "status": 404,
    "error": "Resource not found"
}
```
