#so_many_questions - detecting fraud
1 messages · Page 1 of 1 (latest)
Hi 👋
There are several layers to fraud detection with processing payment intents. For security reasons we do not publicly discuss them all.
You can review our risk evaluation doc as it relates to Stripe Radar here:
https://stripe.com/docs/radar/risk-evaluation
Is there a webhook that we can listen on whenever stripe detects fraud with the payment intents so we can ban/monitor those users?
I think you would need to listen for the payment_intent.payment_failed and examine the payment intent record to see why it failed
https://stripe.com/docs/api/events/types#event_types-payment_intent.payment_failed
Thanks!