> ## 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.

# invoices_void

> Void a finalised invoice. This cannot be undone: correcting it afterwards means issuing another invoice or a credit note.

<div className="tool-route"><span className="tool-row-method" data-method="POST">POST</span><code>{"https://api.stripe.com/v1/invoices/{invoice}/void"}</code></div>

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

result = await stripe.invoices_void.ainvoke({"invoice": ...})
```

## Path parameters

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