> For the complete documentation index, see [llms.txt](https://ninjapay.gitbook.io/ninjapay-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ninjapay.gitbook.io/ninjapay-api-docs/how-to/api-reference-upi/plugins/invoice/remove-product.md).

# Remove Product

This endpoint is used to remove a product details for invoice plugin

#### Method

<pre><code><strong>DELETE https://api.ninjapay.me/webextension/api/v1/fiat/invoice/product/{id}
</strong></code></pre>

#### Request Parameter

**id** : `(integer, required)` - Product ID

#### Response

```jsx
{
    "status": true,
    "data": {},
    "message": "Product removed successfully"
}
```

#### Code Example

```jsx

const options = {
  method: 'DELETE',
  headers: {
    'Content-Type': 'application/json',
    'x-api-key': 'API_KEY' //Invoice key required
  }
};

fetch('https://api.ninjapay.me/webextension/api/v1/fiat/invoice/product/{id}', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
  
```
