#nimish-tank_code
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1263421104102440980
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- nimish-tank_webhooks, 1 hour ago, 11 messages
- nimish-tank_code, 19 hours ago, 4 messages
- nimish-tank_webhooks, 1 day ago, 22 messages
yes
payment intent confirmation
$payment_intent_confirmation = \Stripe\PaymentIntent::confirm([
'expand' => ['invoice.subscription'],
'payment_method' => 'pm_1PSvZOIErBwOu8QAQYwZoA2X'
]);
this are correct or not ?
for subscription invoices you don't have to worry about confirming the PaymentIntent on the backend
automatic payment process time payment status requires_payment_method throwing
so how this resolve this ?
this is how you should collect payment information for subscriptions
https://docs.stripe.com/billing/subscriptions/build-subscriptions?platform=web&ui=elements#collect-payment
$payment_intent_confirmation = \Stripe\PaymentIntent::confirm([
'expand' => ['invoice.subscription'],
'payment_method' => 'pm_1PSvZOIErBwOu8QAQYwZoA2X'
]);
my code creect or not ?
my subscription price is updated so amount is changed how its possible ?
what do you mean?
subscription payment recurring time facing issue
sorry I can't understand what you're trying to ask, could you elaborate please?
I have upgraded the plan. At the time of renewal, recurring payments failed as the current subscription amount is greater than the mandate.
For recurring payment greater than mandate amount or INR 15000, payment was not approved by the card holder.
I see. Your question is, why was the recurring payment more than you expected it to be?
No, I want to ask how to handle such scenerios where current subscription amount is greater than the mandate given by the user initially. In such case renewal is not getting completed as payment is failing.
I think you just send the user to the hosted invoice page, they pay there, and that creates a new mandate. Not sure, the Indian mandate system is not something my team works with much.
Is there another way?
I mean at the time of recurring if the amount is greater than the mandate given by the user. Any process from stripe end?
not sure, I don't think this sort of non-fixed subscription has good support in India/our subscription APIs. I'd suggest asking https://support.stripe.com/?contact=true, my team doesn't have a lot of experience with this