# Remove a feature from a product

Deletes the feature attachment to a product

## Prerequisites

Before you can run the following code snippet, you need to call these APIs with the provided parameters to set up the prerequisite API object(s).

1. createProduct
POST /v1/products {"name":"Gold Plan"}

## Request

```curl
curl -X DELETE https://api.stripe.com/v1/products/{{PRODUCT_ID}}/features/prodft_BcMBZUWCIOEgEc \
  -u "<<YOUR_SECRET_KEY>>"
```

### Response

```json
{
  "id": "prodft_BcMBZUWCIOEgEc",
  "object": "product_feature",
  "deleted": true
}
```

## Returns

Returns an object with a deleted parameter on success. If the product feature ID does not exist, this call raises [an error](https://docs.stripe.com/api/product-feature/remove.md#errors).
