Finance & Payments
Invoices
Accounts-receivable invoices: amounts, due dates, payment status.
Schema
Fields
7 canonical fields with multilingual hints and field-level validators. Any source column that resolves to one of these is mapped automatically by the cascade.
| Column | Type | Required | Hints / validators |
|---|---|---|---|
invoice_number | string | yes | rechnungsnummer · numéro de facture · numero fattura · invoice no · número de factura |
customer_id | string | yes | kunde · client · cliente · customer |
amount_due | number | yes | fälliger betrag · montant dû · importo dovuto · amount due · importe adeudado |
currency | string | yes | währung · devise · valuta · moneda |
due_date | date | — | fälligkeitsdatum · date d'échéance · scadenza · due date · fecha de vencimiento |
status | enum | — | status · statut · stato · estado |
tax_id | string | — | steuernummer · ust-id · numéro de tva · partita iva · tax id · nif |
Sample
Example data
8 rows, AR invoices with due dates. Fully synthetic — safe to share, commit, and run in CI.
Download the fixture and drop it into the Workbench, or POST it straight to the API to watch the cascade resolve a real, deliberately-messy header row.
invoices_sample.csvinvoices_v1Try it
Use it
Map a file to this template with one call. The cascade resolves most columns for free on the deterministic layers; only the leftovers reach the metered LLM.
POST the file with template=invoices_v1 to /v1/uploads. Schema-only mode sends only headers plus a few clamped sample rows; full-data mode runs row-level AI in-region under a BAA and spends a few tokens per map from your prepaid wallet.
curl -X POST https://api.adaptivmapr.com/v1/uploads \
-H "Authorization: Bearer $ADAPTIVMAPR_API_KEY" \
-F "file=@invoices_sample.csv" \
-F "template=invoices_v1"Drop AdaptivMapr into Cursor or Claude Desktop and call the same cascade as an MCP tool. Schema-only calls leave only column names and a few clamped samples — a data-minimization mode by design.
adaptivmapr.match_headers({
template: "invoices_v1",
headers: ["first_name", "last_name", /* ... */]
})Compliance
Full-data on this template
Ready when you are
Put invoices in production — without shipping raw records.
Spin up a key in minutes. Schema-only mapping runs on the free deterministic cascade; a $10 prepaid wallet covers the metered layer when you need it.