#longbeard-payment-events
1 messages ยท Page 1 of 1 (latest)
Hello
Hello
How can I help?
I am looking to understand how I might use the API/Webhooks to know when a particular completed payment intent is paid out.
I am not sure if there is a means to do this
Yep you would use a Webhook endpoint and you likely want to listen for payment_intent.succeeded, but that depends a little bit on your integration.
Have you read through https://stripe.com/docs/webhooks already?
Yes. succeeded would mean the transaction is going to process. However, I need to do reconciliation for our bank account. I was hoping to know when a payout hits and what the contents are
๐ hopping in here since bismarck has to head out soon
ok
If you want to know specifically when a payment hits a bank account then you'd want to listen for payout.paid and then check all the charges that are includedin that payout (https://stripe.com/docs/expand/use-cases#charges-in-payout)
OK. I didn not see that in the events list
I will dive in and look further.
Can you tell me offhand if charges store the payment intent id. I have to somehow reconcile what was paid out using a payment intent id which is what we store
Yeah, a charge can be tied back to a payment intent ID - https://stripe.com/docs/api/charges/object#charge_object-payment_intent
thanks. The documentation is great. For some reason I can never find what I need.
Appreciate the help
๐ happy to help