How due dates are calculated
The repayment due date is always calculated from the moment of Invoice capture – not the order creation date, and not the delivery date. This distinction matters: if a buyer authorizes an order today but the merchant doesn’t ship for two weeks, the due date clock starts on the day the invoice is created, not the day the order was placed. For example, if an invoice is captured on 1 June withDEFER_30D payment terms, the buyer’s payment is due on 1 July, regardless of when the order was originally authorized.
Available payment terms
Tilta supports the following payment term options. Each is identified by an ENUM value that you use in API requests when creating orders and invoices.PREPAYMENT is included for completeness and platform configurability but does not involve deferred financing. It is typically used for platform-specific workflows where upfront payment is required for certain product categories or new buyers.Configuring payment terms for your platform
You decide which of the above terms to offer on your platform. Your configuration is set up during onboarding with your Tilta integration manager. To retrieve your current configured payment terms programmatically:Buyer-specific payment terms
Some buyers may have a restricted set of available payment terms based on their credit facility risk tier or underwriting outcome. To retrieve the payment terms available for a specific buyer:DEFER_90D, even if your platform is configured to offer it.
Displaying payment terms at checkout
Use the following pattern to build a reliable checkout payment term selector:- Fetch the buyer’s available payment terms via
GET /v1/buyers/{external_id}/payment_terms. - Intersect with your platform’s configured terms from
GET /v1/platform/payment_terms. - Display only the intersection to the buyer.
- On selection, submit the chosen ENUM as the
payment_termfield inPOST /v1/orders.
Supported payment methods
Tilta supports the following payment methods for buyer repayment. The available methods depend on the buyer’s country of registration and banking setup.You do not need to implement payment method handling on your side. Tilta manages the repayment process directly with the buyer. The supported methods listed above determine how Tilta will collect repayment from each buyer based on their banking setup.