Learn how to build a scalable multi-vendor marketplace in Bubble with step-by-step guidance for setup, workflows, and payments.

Starting a new venture? Need to upgrade your web or mobile app? RapidDev builds Bubble apps with your growth in mind.
A multi‑vendor marketplace in Bubble is built by creating three core things: Vendor accounts, Products tied to vendors, and Payments that route money to each vendor (usually through Stripe Connect). In Bubble you manage this using your Data Types, Privacy Rules, Workflows, and the Stripe plugin or API Connector. The structure is simple: vendors create products, customers buy them, and Stripe handles paying vendors while you keep a fee.
You only need a small set of Data Types:
The key is the Product.vendor field. Everything depends on linking each product to a vendor User.
Use Stripe’s Connect onboarding link. If you use Bubble’s official Stripe plugin, run the action Generate onboarding link. If using API Connector, call Stripe’s /v1/account\_links endpoint.
{
"account": "acct_123",
"refresh_url": "https://yourapp.com/refresh",
"return_url": "https://yourapp.com/return",
"type": "account_onboarding"
}
Save the returned account value into the Vendor’s stripe_account_id.
On the vendor dashboard, the “Create Product” workflow simply “Create a new Product” and set vendor = Current User. This automatically filters what each vendor sees in their own dashboard via “Search for Products” with constraint vendor = Current User.
Use Stripe’s Checkout Session that supports Connect. Bubble’s Stripe plugin exposes this as “Create checkout session”. Set:
This ensures the vendor gets paid automatically.
In Stripe, add a webhook pointing to a Bubble Backend Workflow endpoint. Event you care about is checkout.session.completed. In the backend workflow, create an Order using the data from Stripe.
{
"type": "checkout.session.completed",
"data": {
"object": {
"id": "cs_123",
"metadata": { "product_id": "abc" }
}
}
}
Bubble extracts the metadata and you create the Order.
This prevents vendors from seeing each other's data.
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