#akii-subscription
1 messages Β· Page 1 of 1 (latest)
You'd need to build a flow that allows your customer to come back on-session to complete payment. Alternatively, you can change your stripe settings to automatically email customers who need to complete authentication steps (see the "Send a Stripe-hosted link for customers to confirm their payments when required" setting at https://dashboard.stripe.com/settings/billing/automatic)
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Are you saying i have 2 options i can go for? How will the customer come back on-session??
Yes there are two options - you either build a flow on your own site for a customer to complete payment, or you rely on stripe's email to do this for you
Will i have to use webhooks to build this flow?
Yes, webhooks would be one way to build this flow yourself
Okay, what events will we receive for these cases??
You'd listen for the invoice.payment_action_required event (https://stripe.com/docs/api/events/types#event_types-invoice.payment_action_required)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Okay, Does this event give me some link that i can send to user, for them to complete the payment..?
You could use the hosted_payment_url (https://stripe.com/docs/api/invoices/object#invoice_object-hosted_invoice_url), but if you're not going to build your own site/flow for this it'll be much easier for you to just enable the setting in your dashboard for us to send the email for you
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Maybe i will do both ways, because in my application i will need user to pay immediately for them to access the feature
Thanks for all the help π π
π βΊοΈ