#surajpatidar
1 messages · Page 1 of 1 (latest)
hi.
i have created subscription upgrade flow and it work fine when use US card but when i use indian card it not work
so what i will do for indian card
any more details than just "it not work"?
what exact code did you use, what error did you get exactly, the request ID req_xxx from any errors, etc.
i have request id because it live and i have't stripe credentails
but i have flow if user click on new plan and if it price greater then then simpliy i have modify subscription and auto charge with last payment method
stripe.Subscription.modify(
subscription.id,
cancel_at_period_end=False,
proration_behavior="none",
billing_cycle_anchor="now",
items=[
{
"id": subscription["items"]["data"][0].id,
"price": price_id,
}
],
)
print("Price Greater then current price")
messages.success(request, "Plan Upgrade SuccessFully.")```
it's amost impossible for me to help unfortuantely without any level of technical detail such as code/example errors.
In general, Indian cards have extra requirements for charging such as e-mandates the customer needs to accept, as well as requirements for the name/address to be present on the Card object, and without those payments fail.
see https://stripe.com/docs/india-recurring-payments for some of the details.
it work fine for US card but when use Indian card subscription show pending status because payment not dedect from user
indian card work but when i when i click continue button it redirect on another page for confimg opt
when i puchased subscription that time card work and redirect on confirm otp page so what i will do for indian card in subscription modify with auto deteaction
it's really hard to understand you or help you.
I'd suggest starting by reading the article I linked carefully. For example in https://stripe.com/docs/india-recurring-payments?integration=subscriptions#subscription-updates it recommends that for Indian customers, do not try to update existing subscriptions, instead delete the old one and create a new one.
https://dashboard.stripe.com/settings/billing/automatic
can it work for indian card
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
if indian card send confim payment page link
I don't know, I'm sorry.