> For the complete documentation index, see [llms.txt](https://developers.cryptopay.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.cryptopay.me/guides/invoices/how-to-handle-unresolved-invoices/paid-late.md).

# Paid late

### Criteria

The customer broadcasts their transaction after 10 minutes.

### Callbacks to be sent in this scenario

<table><thead><tr><th width="203">Callback event</th><th>Invoice status</th><th>Invoice status context</th><th>Description</th></tr></thead><tbody><tr><td><code>transaction_created</code></td><td><code>new</code></td><td><code>null</code></td><td>A customer has just broadcasted their transaction on the network after 10 minutes</td></tr><tr><td><code>transaction_confirmed</code></td><td><code>new</code></td><td><code>null</code></td><td>The transaction has been confirmed on the network</td></tr><tr><td><code>status_changed</code></td><td><code>unresolved</code></td><td><code>paid_late</code></td><td>The invoice needs to be resolved</td></tr><tr><td><code>status_changed</code></td><td><code>completed</code></td><td><code>null</code></td><td>The transaction amount was exchanged at the new exchange rate. The final invoice amount may differ from the original one</td></tr><tr><td><code>status_changed</code></td><td><code>refunded</code></td><td><code>null</code></td><td>The whole transaction amount was refunded</td></tr></tbody></table>

### API auto settings and status flow

| API Auto Settings                                           | Payment Flow                                                                                                |
| ----------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
| Do nothing, I will handle them myself                       | `new` → invoice expired → txn sent → txn confirmed → `unresolved:paid_late`                                 |
| Automatically refund to my crypto account                   | `new` → invoice expired → txn sent → txn confirmed → `unresolved:paid_late` → tx refunded → `refunded`      |
| Automatically recalculate at a new exchange rate and settle | `new` → invoice expired → txn sent → txn confirmed → `unresolved:paid_late` → tx recalculated → `completed` |
