Invoices
Get wizard-shaped prefill data for an extracted invoice
deprecated
Deprecated — use GET /v2/invoices/:id/payout-prefill, which returns the amount as a decimal string. This v1 endpoint returns the amount as integer minor units and is frozen. Combines the OCR extraction, validation errors, and beneficiary match into the payload the SendMoneyWizard consumes. Returns 409 if the extraction is not yet ready; the client should poll GET /v1/invoices/:id.
GET
Get wizard-shaped prefill data for an extracted invoice
Path Parameters
Invoice UUID
Response
Per-field UX state. Keys: supplier, iban, bic, accountNumber, country, currency, amount, reference, dueDate. Values: confirmed | needs_review | missing.
Example:
{
"iban": "needs_review",
"supplier": "confirmed"
}Previous
Get wizard-shaped prefill data for an extracted invoice (decimal-string amount)Combines the OCR extraction, validation errors, and beneficiary match into the payload the SendMoneyWizard consumes. The amount is a decimal string in major units. Returns 409 if the extraction is not yet ready; the client should poll GET /v1/invoices/:id. Supersedes the deprecated v1 endpoint, which returns the amount as integer minor units.
Next
Get wizard-shaped prefill data for an extracted invoice