#Zhili

1 messages · Page 1 of 1 (latest)

sand finchBOT
fleet kestrel
#

Correction: by "$21.00", I actually meant "$11.00", thank you!

thick portal
fleet kestrel
thick portal
#

I'd recommend reading the documentation and decided which is more suitable for your needs

fleet kestrel
#

If I have a second question that is only somewhat related to the ones above, should I continue here or start a new thread? Thank you!

thick portal
#

Here is fine

fleet kestrel
#

Got it thank you.

As I've mentioned above, my app is working fine with product A, B and C, where all of them charges a fixed $X per month without any trial periods. I am now trying to create a product D on Stripe dashboard called "Bundle": if a new user subscribes D/Bundle, he or she would get access to A, B and C.

I am having trouble with the following:

  1. how to handle the provisioning part under the Python/JS-heavy development, once a successful payment has been made. In other words, if users subscribes and pays for product A, they should get access to A; Sub'ing B-> Getting B, etc. But I am confused by how to make the backend to grant access to [A, B, C], when users subs and pays for D (the bundle).

My code looks very similar to the python example here: https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=checkout#provision-and-monitor

  1. I've already implemented the CheckOut flow in the way where users are not allowed to proceed to the payment, if they "Submit" products that they are already subscribing, not sure if that would cause a conflicts with (1) above.

Thank you!

Create and manage subscriptions to accept recurring payments.

thick portal
#
  1. That's something you'd handle in your application logic, nothing inside of Stripe can be used to determine what subscribers of a certain product get access to. Do you have a specific question concerning webhooks?

  2. I don't understand what you're asking me.

#

There's no 'bundle' concept like you describe. So you need some logic in your app that provisions the correct access to features/products according to what Stripe prod_xxx/price_xxx they're subscribed to

fleet kestrel
thick portal
#

Yeah that's probably the best reference for provisioning access. Obviously the details are specific to your application, though

fleet kestrel
thick portal
#

Which idea?