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

> Record an invoice as bad debt. It refunds nothing and cancels nothing; it marks the invoice for accounting.

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

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

result = await stripe.invoices_mark_uncollectible.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>
