#ajay-subscription

1 messages · Page 1 of 1 (latest)

ebon sigil
#

@buoyant vapor thanks a lot for your help, let's discuss in this thread 🙂

buoyant vapor
#

@plain socket don't know how to do that in strip checkout, I'm using api to create subscriptions

plain socket
#

I am expecting to have user can subscribe only 1 time with features also (additional price)

plain socket
# buoyant vapor <@901042984181719050> don't know how to do that in strip checkout, I'm using api...

like you said if I want create Basic subscription with price $10
but I want feature of Email also
another user want Basic + Sms
another user want Basic + Email + Sms

so here are 4 cases
so I need create 4 plans?

Basic (no email, sms)
Basic (with email but no sms)
Basic (with sms but no email)
Basic (with email and sms)

this is just single plan with 2 features

consider I have 5 plans with 10 features

buoyant vapor
#

@plain socket Create a product for each feature, and three of your 'plan' products. And during checkout charge for the plan and the selected features

plain socket
#

how can I do that?

plain socket
#

Any help?

ebon sigil
plain socket
#

I know about this
But in that way theres too many subscription

Basic (no email, sms)
Basic (with email)
Basic (with sms)
Basic (with email and sms)

but I have 5 plans and 10 features
so there might be 50+ total subscriptions

broken arrow
#

You could create one Product for each feature and one Price for each product. So something like:

  • Product: Basic, price: $xx
  • Product: Email, price: $yy
  • Product: SMS, price $zz
    Then when creating the subscription, pass multiple price IDs! So if the users wants basic + email, you would create a subscription while passing 2 price IDs: the basic price and the email price.
plain socket
#

just giving example

main plans

  1. basic

  2. silver

  3. gold

  4. email

  5. sms

  6. additional storage

  7. api access

  8. social support

now look subscriptions possibilities
basic
basic + email
basic + sms
basic + additional storage
basic + api access
basic + social support
basic + email + sms
basic + email + additional storage
basic + email + api access
basic + email + social support
basic + sms + additional storage
basic + sms + api access
basic + sms + social support
.
.
.
basic + email + sms + additional storage + api access + social support

you think this is good?

broken arrow
#

It means you would create 8 Products in Stripe. Then you ask customers to choose which products then want, and then you dynamically create a subscription for them. So there's no need to create all the subscription possibilities in advance.

buoyant vapor