Learn how to build secure split payments in Bubble with step-by-step guidance, best practices, and tools to streamline payouts.

Starting a new venture? Need to upgrade your web or mobile app? RapidDev builds Bubble apps with your growth in mind.
The short version: In Bubble, you build split payments using Stripe Connect. Bubble’s built‑in Stripe plugin does not support Connect, so you must use the API Connector to create Connected Accounts, generate onboarding links, and use PaymentIntents with transfer\_data or Transfers. Bubble only passes data; Stripe does the splitting.
You charge a customer once, but Stripe automatically distributes the money:
Step A — Create Stripe Connected Accounts
// Create connected account
curl https://api.stripe.com/v1/accounts \
-u sk_test_xxx: \
-d type=express
You charge the buyer normally, but include transfer\_data[destination] so Stripe sends the seller’s portion directly to their Connected Account.
// PaymentIntent that splits payment
curl https://api.stripe.com/v1/payment_intents \
-u sk_test_xxx: \
-d amount=10000 \
-d currency=usd \
-d application_fee_amount=1500 \
-d transfer_data[destination]=acct_123
Client-side confirms the card payment (Stripe.js embedded via Bubble plugin or Stripe Checkout Session with Connect params). After confirmation, Stripe automatically routes funds.
Create a Backend Workflow endpoint to receive events like payment\_intent.succeeded. Store the final status in your database so your app knows when to release content or mark the order paid.
Learn how to seamlessly integrate Bubble.io with Git through our comprehensive step-by-step guide. Perfect for beginners and professionals.
Learn how to seamlessly integrate Bubble.io with Reddit Ads using our easy step-by-step guide. Boost your ad management today!
Explore our step-by-step guide on integrating Bubble.io with AWS S3, making your app development process more efficient and secure.
Follow our step-by-step guide to seamlessly integrate Bubble.io with Lucidchart, enhancing your workflow & productivity.
Learn how to seamlessly integrate Bubble.io and Kentico with our comprehensive, easy to follow step-by-step guide.
Discover easy-to-follow steps for integrating Bubble.io with Box. Boost your workflow and secure your files seamlessly today.
Fix broken workflows | Optimize logic | Boost performance | Scale with confidence