#heymato
1 messages · Page 1 of 1 (latest)
Hi there
When you receive the webhook you want to retrieve the PaymentIntent and then look at the charges.data[0].payment_method_details
That will provide you with the most recent charge for that PaymentIntent
You can see all charges (for instance if there are multiple declines, or it was eventually successful) by listing Charges by the PaymentIntent: https://stripe.com/docs/api/charges/list#list_charges-payment_intent
Thanks !