#Does the @dodopayments/better-auth sdk offer the same capabilities as @better-auth/stripe?

1 messages · Page 1 of 1 (latest)

crimson hamletBOT
#

Dodo Payments + Better Auth does not yet support organization-level billing out of the box like Stripe’s org/team billing model.

What you can do instead:

  • Create one Dodo customer per organization
  • Store the customer_id on your org model
  • Attach subscriptions to that customer
  • Map users → organization in your DB (outside Dodo)

Basic flow:

  1. Create org in your app
  2. Create Dodo customer for that org
  3. Start subscription using that customer
  4. Gate features based on subscription status
  5. Handle webhooks → update org subscription state

If you need per-seat billing or team-based pricing, you’ll need to implement that logic yourself on top.

If you want, I can sketch a minimal schema + flow.

tender flare
#

@fathom leaf please help here

fathom leaf
#

@tender flare Looks like original message is deleted.

tender flare
bitter meadow
#

No actually I think I will have too setup billing without this plugin because this is not same as what stripe plugin does.

#

I checked the plugin repo