#RobertGoddard = manual captur
1 messages ยท Page 1 of 1 (latest)
I will need to check in to this but I think you should get a webhook after 7 days when you can no longer capture
That would be great. Any idea what the event type would be? Or where in the documentation I could find that event type?
Looking in to this. Definitely should be in some doc. I'm surprised it isn't in that one
Quick question, are you using PaymentIntents here or are you working with Charges directly?
PaymentIntents
Awesome, then you can listen for the payment_intent.amount_capturable_updated event https://stripe.com/docs/payments/capture-later
So we'll get one of those when the uncaptured payment intent is created, and one when it expires ?
I thought so but may have misread something here. I am looking again to double check
https://stripe.com/docs/api/payment_intents/capture says they will be canceled by default after 7 days. I'm wondering if we'll get a payment_intent.canceled event instead. I bet that's what it does
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yeah I just saw that I missed that line. payment_intent.cancelled would be the one to listen for here
Cool beans. Thanks a bunch for your help ๐
Of course! Glad we could get there eventually
Working with stripe has been a joy so far; just a few nuances to iron out.