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

# Delete house discount

> Remove a house discount by id

`DELETE /api/v2/storefront/house-discounts/{id}`

Deletes a house discount. After deletion, buys that previously matched this house
fall back to the nearest remaining ancestor discount (if any), or to the
undiscounted quote.

## Request

```bash curl theme={null}
curl -X DELETE https://api.interchange.io/api/v2/storefront/house-discounts/17 \
  -H "Authorization: Bearer $SCOPE3_API_KEY"
```

## Response

Returns `204 No Content` on success.

## Errors

* `404 NOT_FOUND` — no house discount with this id on the storefront.
* `401 UNAUTHORIZED` — missing or invalid bearer token.

See [Errors](/v2/reference/errors) for the full error contract.

## Related

<CardGroup cols={2}>
  <Card title="House discount tasks" href="/v2/storefront/house-discounts/tasks" icon="list-check">
    All house-discount operations.
  </Card>

  <Card title="Create house discount" href="/v2/storefront/house-discounts/tasks/create-house-discount" icon="plus">
    Re-create a discount on a different house.
  </Card>
</CardGroup>
