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

# invoice_items_delete

> Remove an invoice line, while it is unattached or its invoice is a draft.

<div className="tool-route"><span className="tool-row-method" data-method="DELETE">DELETE</span><code>{"https://api.stripe.com/v1/invoiceitems/{invoiceitem}"}</code></div>

```python stripe_invoice_items_delete.py theme={null}
from charter.packs import stripe

result = await stripe.invoice_items_delete.ainvoke({"invoiceitem": ...})
```

## Path parameters

<div className="reference-table">
  | Field                                                               | Type     | Description                           |
  | ------------------------------------------------------------------- | -------- | ------------------------------------- |
  | `invoiceitem` <span className="required" title="required">\*</span> | `string` | The ID of the invoice line to delete. |
</div>
