Merchant of record: Do you need to onboard merchants?
The merchant of record model determines the invoice flow on your platform and whether full merchant onboarding is required.
You sell on your own account means the goods or services are yours and the receivable is yours. Tilta finances the invoice you issue to the buyer, and there is no third party on the supply side to vet.
You are the merchant of record means you legally intermediate every transaction. You purchase goods or services from the merchant and resell them to the buyer. Tilta finances the invoice you issue to the buyer, and you settle with the merchant separately. You are the sole counterparty Tilta deals with on the supply side, so no individual merchant onboarding is required.
You are not the merchant of record means you act as a pure broker or marketplace. The merchant and buyer transact directly, and Tilta finances a single merchant↔buyer invoice. In this case, Tilta needs to vet and onboard each merchant individually before their receivables can be financed.
If you are unsure which model applies to your platform, consult your Tilta integration manager. The answer has significant legal and operational implications for your integration architecture.
Required information by entity type
When merchant onboarding is required, the information you need to collect depends on the merchant’s legal form. Tilta supports two merchant types: Individual persons (sole traders, freelancers) and Legal Entities (companies, partnerships).- Individual person
- Legal entity
Individual persons include sole traders, freelancers, and any business owner who operates without a separate legal entity. Collect the following information before creating the merchant via API:
Implementation options
You can onboard merchants using the REST API or by redirecting them to Tilta’s hosted onboarding form. The right choice depends on how much control you want over the user experience.Option 1: Hosted redirect
The simplest path to production. Redirect the merchant to Tilta’s hosted web form, where they complete the onboarding process directly. Tilta handles all data collection, validation, and document upload – no custom UI required on your end. Use the Hosted Redirect when:- You want the fastest path to live onboarding
- Your merchant base is comfortable being redirected to a third-party form
- You do not need deep customisation of the onboarding UI
Option 2: REST API
Build a fully custom onboarding flow within your own platform interface. You collect data from the merchant, then submit it programmatically to Tilta’s API. This gives you full control over branding, UX, and data validation before submission. Use the API when:- You want to keep merchants entirely within your platform’s UI
- You already collect most required merchant data during your own signup flow
- You need to integrate merchant onboarding into a broader multi-step workflow
API workflow
The following steps describe the REST API onboarding process.1
Create the merchant
Submit the merchant’s basic information to create their record in Tilta. Use the
POST /v1/merchants endpoint with the entity details described above.external_id, legal_name, legal_form, business_address, and contact_emails are required. Within the
address, postcode, city, and country are required.2
Add representatives and owners
Legal representatives and ultimate beneficial owners are separate records, not fields on the merchant. Create each
individual with Create a person, then associate them using
Add representative and
Add owner.
3
Tilta reviews and approves
Once all required information is submitted, Tilta’s compliance team reviews the merchant application.
Poll
GET /v1/merchants/{external_id} to check the current status. A merchant that has completed onboarding
reaches ENROLLED; INACTIVE and EXPIRED indicate that they cannot currently be financed.4
Merchant is ready for financing
With an
ACTIVE status, the merchant’s receivables can now be financed through Tilta. You can proceed to create orders and invoices referencing this merchant’s external_id.Approval timeline
Tilta targets a merchant approval decision within one business day of receiving a complete application. Incomplete applications – missing UBO documents, mismatched names, or absent legal representatives – will delay the review. Ensure all fields are populated and all ID scans are valid before submitting.Tilta may request additional documentation for merchants in higher-risk industries or jurisdictions. Your integration manager will communicate these requirements on a case-by-case basis.