#alex.esch-account-support
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- alex.esch, 3 hours ago, 14 messages
- alex.esch, 10 hours ago, 9 messages
- alex-subscription-paymentintent, 23 hours ago, 14 messages
- alex.esch, 1 day ago, 72 messages
alex.esch-account-support
@cunning garnet :question: Have a non-technical question, account issue, or need one-on-one support? We wish we could help, but this community is focused on developers and technical discussions. Our support team will be able to assist you better than we can: https://support.stripe.com/contact
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
it's a technical question
Can you elaborate a bit then?
case
we are selling bundles
each bundle includes a subscription
right now, we are using paymentintent, and creating subscriptions programatically, but these subscriptions are not increasing MRR because they have not been charged
trying all the solutions possible, have not found any possible...
case
1 customer, 1 payment, multiple subscriptions created
example
checkout, 1 bundle with a subscription of type Premium Annual
user is changing the quantity, so instead of purchasing 1 bundle, he purchases 3
we need to create 3 different subscriptions
with a status of paid
You would have to disallow them from chaning quantity and instead redirect them to a page where you create 3 separate subscriptions for them. There isn't a Stripe product that does this for you, unfortunately.
ok, i have another approach
checkout (1 payment intent for 1 subscription)
bundle qty 3
submit order
charge the user for 3 subscriptions programatically
can it become a problem for a stripe?
means,
first subscription, paid from frontend side by completing paymentintent
second and third subscriptions, are created programtically at backend side and linked to payment method of first subscription
You will want to test if that has the behavior you're looking for. There isn't enough detail here for me to know if that would work for your use-case.
it will work
i mean
i will charge the user for multiple times, for same amount in less of 1 minute
could Stripe consider this as fraud or some kind of unwanted behavior?
I don't have good insight into what Stripe considers fraudy behavior, so I can't really answer that
understood, thank you