#Madelyn-ACH
1 messages · Page 1 of 1 (latest)
Hi there, are you currently using Charge API or PaymentIntent API to accept ACH payments?
And can you also send the docs that you are reading?
Using Hosted Invoices!
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Got it, you can listen to the invoice.paid event to get notified when the payment is succeeded.
Got it - but what if I am looking for when the customer attempted to pay rather than when the payment was deemed to be successful?
You can listen to payment_intent.processing event. This event will be fired when your customer has attempted the payment.
Amazing, thank you so much!!! That event is available for Hosted Invoices?
Use case: I'm hoping to provide a customer with access to a platform immediately upon them attempting payment. If that payment turned out to not be a success later down the road (due to bank gates or any other reason for ACH failure), then I'd simply restrict their platform access and wait until they reattempted payment. Sounds like, should the event you mentioned work for Hosted Invoices, this should be possible
Yes, these events also will be fired for payments made via hosted invoice page.
perfect, thank you so much!
Welcome! happy to help.