> 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-invoice.md).

# Remove Invoice

This endpoint is used to remove invoice & its details&#x20;

#### Method

<pre><code><strong>DELETE https://api.ninjapay.me/webextension/api/v1/fiat/invoice/remove-invoice
</strong></code></pre>

#### Request Parameter

**invoice\_uuid** : `(string, required)` - Add Invoice uuid&#x20;

#### Response

```jsx
{
    "status": true,
    "data": {},
    "message": "Invoice 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/remove-invoice', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
  
```
