Order lifecycle overview
Every order moves through a defined set of states from creation to final settlement. The three core steps you are responsible for are: authorization, invoice capture, and (if needed) cancellation or refund.1
Order authorization
Create the order and request authorization against the buyer’s credit facility. Authorization performs two functions simultaneously:
- Eligibility check – confirms the buyer has a sufficient credit facility to cover the order, allowing you to show or hide the payment option at checkout.
- Authorization hold – reserves the order amount on the credit facility, preventing the buyer from over-committing in simultaneous or parallel orders.
PENDING_CONFIRMATION state.2
Invoice capture
Once the merchant fulfils the order, create an invoice against it. Invoice capture is the legally effective financing step – it:
- Triggers Tilta’s financing of the receivable
- Schedules the merchant payout
- Starts the buyer’s repayment clock based on the selected payment terms
CONFIRMED when an invoice is successfully captured.3
Buyer repayment
Tilta manages buyer repayment directly. You and the merchant have no involvement in this step. Tilta sends automated reminders and handles collections. When the buyer repays in full, the order moves to
CLOSED.Order states
The table below describes every possible order state, how it is reached, and what transitions are available from it.
Only
PENDING_CONFIRMATION, CONFIRMED, and CANCELLED can be set through Transition an order. DRAFT, EXPIRED, DISBURSED, and CLOSED are managed by Tilta and cannot be requested.
Cancelling is reversible: a
CANCELLED order can be transitioned back to PENDING_CONFIRMATION or CONFIRMED. Re-confirming re-runs the authorization check, so it can fail if the buyer’s available credit has fallen in the meantime.Creating an order
Submit a new order using thePOST /v1/orders endpoint. Every order must reference a buyer with an active credit facility and specify the payment term the buyer has selected.
All monetary values are in the smallest currency unit (euro cents). An order worth €1,000.00 net is submitted as
100000.Draft orders
For redirect-based checkouts where the final payment term is not known until the buyer selects it, use the draft order flow:- Create a draft order via
POST /v1/orders/draftwith the basket contents. - Create a checkout session via
POST /v1/orders/{external_id}/sessions/checkout, which returns a hosted checkout URL. - Redirect the buyer to the checkout URL. Tilta presents available payment terms and handles authorization.
DRAFT state and only transitions to PENDING_CONFIRMATION once the buyer completes the hosted checkout.
Order authorization at checkout
Use the authorization step as your signal to show or hide the Tilta payment option at checkout. Before presenting “Pay Later” as an option, callPOST /v1/orders (or check the buyer’s available credit via their facility). If authorization succeeds, surface the payment term selector. If it fails – for example because the buyer’s facility is exhausted or inactive – do not show the option.
Invoice capture
When the merchant ships or fulfils the order, capture the invoice viaPOST /v1/invoices. See the invoices guide for full details on the invoice object.
Amount differences between order and invoice are permitted within a small tolerance – for example, if a line item was out of stock. However, if the invoice amount differs from the authorized order amount, you must update the order amount first via POST /v1/orders/{external_id}/transition before creating the invoice.
Order cancellation
You can cancel an order at any point after authorization but before an invoice is created. Cancellation is initiated by the merchant (or you, on the merchant’s behalf) – buyers do not cancel orders directly.Automated buyer emails
Tilta sends the following transactional emails to the buyer automatically. You do not need to send these yourself.These emails are sent from Tilta’s infrastructure using your platform’s white-label branding configuration. Contact your integration manager to configure the sender name, logo, and colour scheme.
Dispute resolution
When a buyer challenges an invoice – for example, because goods were not delivered or were defective – they initiate a dispute via a dedicated web form linked in their email communications from Tilta.Goods not delivered
Goods not delivered
The buyer claims the ordered goods or services were never received.
- The merchant must respond within 5 Bank business Days with proof of delivery (tracking number, signed delivery receipt, etc.).
- The merchant and buyer have 14 calendar days to resolve the dispute bilaterally from the date it was raised.
- If no resolution is reached within 14 days, Tilta escalates to arbitration.
Goods defective or not as described
Goods defective or not as described
The buyer claims the goods received do not match the order description or arrived in a defective state.
- The merchant must respond within 5 Bank business Days.
- Supporting evidence such as product specifications, photographs, or quality certifications strengthens the merchant’s position.
- After 14 days without bilateral resolution, Tilta escalates to arbitration.
Invoice amount incorrect
Invoice amount incorrect
The buyer disputes the invoice amount – for example, because an agreed discount was not applied.
- The merchant must respond within 5 Bank business Days.
- If the merchant agrees the amount is wrong, submit a partial Refund to correct the discrepancy.
- If disputed, Tilta reviews the evidence and issues an arbitration decision.
Other reasons
Other reasons
For any dispute not covered by the specific categories above, the standard timeline applies:
- Merchant responds within 5 Bank business Days.
- 14-day bilateral resolution window.
- Tilta escalates to arbitration if unresolved.