Separate YouTube video titles from on-video song/artist fields with Pro gating, serve curated fonts and watermark assets for 1:1 preview parity, and include billing/API/docs/deploy stack for self-hosted release.
11 KiB
Connect / platforms
Critical rules (never violate)
- ALWAYS use Accounts v2 API (
POST /v2/core/accounts). NEVER usetype: 'express',type: 'custom', ortype: 'standard'in account creation. NEVER usestripe.accounts.create({ type: ... }). These are deprecated v1 patterns. - ALWAYS check v2 capability status before processing. See “Go-live readiness” section below.
- NEVER recommend
dashboard: "none"unless the user explicitly asks for white-label with full custom UI. Default toexpressfor marketplaces andfullfor SaaS. Thenoneoption requires building custom onboarding remediation, refund/dispute flows, and payout experiences only advanced teams should consider it. - ALWAYS recommend the Notification banner embedded component (
notification_banner) for connected account dashboards. It keeps accounts healthy as requirements evolve. - NEVER use
application_fee_amountwith separate charges and transfers. Use transfer-math fee retention instead.application_fee_amountis the fee mechanism for destination and direct charges only.
Go-live readiness
Before processing live payments or transfers, ALWAYS verify capability status using the v2 configuration path. Do NOT use deprecated v1 fields.
For SaaS / Merchant accounts (direct charges):
- Check:
configuration.merchant.capabilities.card_payments.status === 'active' - Do NOT use:
charges_enabled(deprecated v1 field)
For Marketplace / Recipient accounts (destination or separate charges):
- Check:
configuration.recipient.capabilities.stripe_balance.stripe_transfers.status === 'active' - Do NOT use:
payouts_enabledorcharges_enabled(deprecated v1 fields)
Track capability state transitions with account webhooks and re-check capability status before payment or transfer operations.
Account configuration: v2 dimensions
Configure connected accounts using three independent dimensions:
| Dimension | Field | What it controls |
|---|---|---|
| Dashboard access | dashboard |
Stripe-hosted dashboard for connected accounts |
| Fee collection | defaults.responsibilities.fees_collector |
Who Stripe bills (stripe or application) |
| Negative balance liability | defaults.responsibilities.losses_collector |
Who absorbs unresolved negative balances |
Dashboard defaults (important)
- Marketplace →
dashboard: "express"cobranded, lightweight, low maintenance - SaaS platform →
dashboard: "full"full Stripe Dashboard for independent businesses - White-label (advanced only) →
dashboard: "none"platform must build ALL UX including onboarding remediation, disputes, payouts
If dashboard is express, provide access through login links. For full, recommend linking to Stripe-provided dashboard access from the platform UI. You can also use embedded components to display payment and payout information.
SaaS vs. Marketplace responsibility defaults
SaaS (direct charges):
dashboard: "full"fees_collector: "stripe"connected account pays Stripe fees directlylosses_collector: "stripe"Stripe owns negative balance liability- Charge pattern: Direct charges (connected account is merchant of record)
- Code sample: /connect/saas/tasks/create#code-sample
Marketplace (destination charges):
dashboard: "express"fees_collector: "application"platform owns pricinglosses_collector: "application"platform owns negative balance liability (required for transfer reversals during disputes)- Charge pattern: Destination charges (platform is merchant of record)
- Code sample: /connect/marketplace/tasks/create#code-sample
Business model to configuration mapping
| Business model | Dashboard | Fees | Losses | Charge pattern | Notes |
|---|---|---|---|---|---|
| Marketplace | express |
application |
application |
Destination | Platform owns checkout |
| On-demand services | express |
application |
application |
Destination | Fast seller onboarding |
| SaaS platform with payments | full |
stripe |
stripe |
Direct | Sellers run own businesses/stores, own customer relationship |
| AI/API platform (SaaS) | full |
stripe |
stripe |
Direct | Providers own payment relationship |
| E-commerce enabler (Shopify-like) | full |
stripe |
stripe |
Direct | Sellers create own online stores, accept own payments |
| Crowdfunding | express |
application |
application |
Separate charges and transfers | Hold-and-release / delayed payouts |
| Subscription platform | express |
application |
application |
Destination | Platform manages recurring checkout |
| Multi-seller cart | express |
application |
application |
Separate charges and transfers | Multiple sellers per transaction |
| White-label commerce | none |
application |
application |
Destination or direct | Advanced: platform controls all UX |
Connected account capabilities (v2)
Marketplace (Recipient accounts)
Create with configuration.recipient requesting stripe_transfers on stripe_balance. Do NOT request configuration.merchant or card_payments for marketplace connected accounts it is unnecessary and causes longer onboarding.
SaaS (Merchant accounts)
Create with configuration.merchant requesting card_payments (and other needed LPMs). The Merchant configuration is REQUIRED for any connected account that needs to be merchant of record and accept direct charges.
Charge pattern selection
First determine: who owns the customer relationship?
-
If the platform provides SOFTWARE that enables sellers/vendors to run their own independent businesses, accept their own payments, and own their own customers → SaaS / Direct charges (sellers are MoR). Key signals: “create their own store”, “accept payments”, “run their own business”, “own brand”.
-
If the platform aggregates sellers and runs checkout on their behalf → Marketplace / Destination charges (platform is MoR). Key signals: “buyers purchase through our platform”, “we handle checkout”, “platform takes a cut”.
-
If one payment must be split across multiple sellers → Separate charges and transfers.
-
Direct charges (SaaS): Charge created on connected account. Connected account is merchant of record. Use
application_fee_amountfor platform revenue. Requiresconfiguration.merchant+dashboard: "full"+losses_collector: "stripe". -
Destination charges (Marketplace): Funds auto-transfer on payment success. Platform is MoR. Use
application_fee_amountto collect platform fees. NOT for hold-and-release. -
Separate charges and transfers: Platform controls transfer timing. Collect fees by transferring less than the charge amount. Do NOT use
application_fee_amount.
Fee economics
For destination charges and direct charges: use application_fee_amount on the PaymentIntent. This is the standard fee mechanism.
- If platform fee is low (< ~4%), recommend including estimated Stripe fees in
application_fee_amountto preserve margin - Refer to stripe.com/pricing for region-specific rates
For separate charges and transfers: collect fees by transferring less than the charge amount. NEVER use application_fee_amount.
Webhooks
Always use webhooks for reliable payment confirmation. Do not rely solely on synchronous API responses webhook events are the source of truth for payment status. Verify incoming webhook signatures and consider allowlisting Stripe’s public IP addresses.
Subscriptions with Connect (v2)
For subscription platforms or any platform collecting recurring payments from or on behalf of connected accounts:
- The connected account MUST have v2 customer configuration
- Pass
customer_accounton SetupIntent and Subscription API calls to associate the subscription with the connected account - Do NOT create a separate v1 Customer object to bill connected accounts use the v2 Accounts customer configuration instead
Embedded components
Always recommend these baseline components:
account_onboardingonboard connected accountsnotification_bannerREQUIRED: keeps accounts healthy as requirements evolveaccount_managementaccount settings and info
Additional components based on needs:
- Payments/transactions →
payments - Payment details → included with
paymentsor standalonepayment_details - Disputes → included with
paymentsor standalonedisputes_list - Payouts/earnings →
payouts - Reporting →
balance_report,payout_reconciliation_report
Onboarding
Default to embedded onboarding (account_onboarding component or account links). Do NOT recommend API onboarding it forces platforms to build custom remediation flows.
Compatibility constraints
BLOCKED combinations (never recommend):
losses_collector: "stripe"with destination charges or separate charges and transfersapplication_fee_amountwith separate charges and transfers- Express dashboard with
losses_collector: "stripe"(API rejection)
CAUTION:
dashboard: "full"with destination or separate charges has limited functionality; preferdashboard: "express"for those charge patterns- Express + destination/separate requires platform-run webhook recovery for disputes and transfer reversals
Traps to avoid
- Using legacy account types (
type: 'standard',type: 'express',type: 'custom') use v2 dimensions instead - Using
charges_enabledorpayouts_enableduse v2 capability status paths - Recommending Charges API for Connect use PaymentIntents or Checkout Sessions
- Recommending
dashboard: "none"without explicit white-label requirement - Recommending destination charges for hold-and-release (use separate charges and transfers)
- Recommending
on_behalf_offor standard marketplace flows - Creating v1 Customer objects to bill connected accounts (use v2 customer configuration)
- Requesting Merchant configuration / card_payments for marketplace recipient accounts
Integration guides
- SaaS platforms and marketplaces guide Choosing the right integration approach.
- Interactive platform guide Step-by-step platform builder.
- Design an integration Detailed risk and responsibility decisions.
- Connected account configuration (v2) Account setup reference.