#surajpatidar
1 messages · Page 1 of 1 (latest)
Hello, how can we help?
i have upgrade subscription
with auto detect payement
but in 3RD card it not work it give payment_intent.requires_action
so how to work on that and show customer to requere action
You can either direct them to a Stripe hosted page or your own custom page, do you know what you want to do there?
subscription.id,
cancel_at_period_end=False,
proration_behavior="none",
billing_cycle_anchor="now",
items=[
{
"id": subscription["items"]["data"][0].id,
"price": price_id,
}
],
)```
i have this can i add any paramter to if 3rd card first complete authentication
You have a couple of options here:
https://stripe.com/docs/billing/subscriptions/overview#requires-action
Basically you will need to reach out to the customer and then direct them to either the Stripe-hosted invoice page or a page on your site that can display the 3DS modal.