How it works
The credit chain is the same as any lending program — Entity → Application → Account (credit_with_underwriting) → Balance — with structure: revolving, so repayments restore available credit. Cards are created at your issuer processor and reported to Lead as Card objects; spend settles with the networks through Lead’s Network Settlement process; and because Lead is the lender of record, network settlement originates receivables on Lead’s books, which are grouped into a daily sale you purchase — today via the Sales Request/Response file exchange, with a Sale API planned.Example scenario
Fieldstone issues charge cards to small landscaping businesses. Bluebonnet Landscaping is approved for a $25,000 line; Fieldstone reports the application, opens a revolving balance, issues a card through its processor, and reports it to Lead via the Cards API. Bluebonnet spends $4,000 in week one; that spend settles through the networks and creates receivables at Lead, which roll into the daily sales Fieldstone purchases. Fieldstone services Bluebonnet’s balance and repayments through its daily files.Objects involved
Before you start
- Sandbox credentials with the lending-chain scopes plus card/read_write; an issuer-processor relationship (cards are created there — Lead’s Cards API is how you report them).
- Use the Cards API Beta for new programs; the Cards file schema remains the path for existing file-integrated programs.
- The receivables sale runs on files today. You acknowledge each day’s purchase through the Sales Request/Response exchange over SFTP — Sales Request file schema, Sales Response file schema, and how settlement amounts work. A sale API is planned: one daily sale object you review and accept in a single call, acceptance settling the funds (Platform Evolution). The cycle’s shape is unchanged across transports; build against the day’s sale as a unit.
- Servicing (repayments, interest, fees) is reported via the daily Balance and Transaction files. The Accounts and Subledger Balance APIs, and the daily files, all have planned unified-model successors (user accounts, user balances, user transactions — Platform Evolution); same flows, migration in cohorts with notice.
The credit line
The origination chain matches Instant Loan Origination and Disbursement steps 1–4 with one change: the Balance uses structure: revolving — no fixed maturity or expected finance charge required; available credit is the live constraint, with the sum of posted card disbursement transactions capped by it and repayments you report restoring it. Decision point: charge-card (pay-in-full) and revolving-credit programs use the same objects; the difference is your repayment terms and servicing, not the object model.Cards
Report each card your processor creates:POST /v0/cards { "account_id": "...", "form": "physical | virtual", "...": "..." }
Cards are created active; manage the lifecycle through the dedicated activate/deactivate/close endpoints. Statuses describe your report — a card closed in error is correctable back to active. Keep status current promptly: Lead’s compliance oversight depends on it.

