#dicbra
1 messages ยท Page 1 of 1 (latest)
You'd look at next_payment_attempt on the Invoice: https://stripe.com/docs/api/invoices/object#invoice_object-next_payment_attempt
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Otherwisew, you can manually attempt confirmation of the associated PI with the customer on-session
how?
Well, you'd get the Payment Intent from the Invoice (https://stripe.com/docs/api/invoices/object#invoice_object-payment_intent), and use the client_secret to initialise an Element instance, have your customer input payment details and then call confirmPayment
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
TY!
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!