#dav-card-avs
1 messages · Page 1 of 1 (latest)
dav-card-avs
@mossy ledge you can use SetupIntents to collect card details ahead of a payment https://stripe.com/docs/payments/save-and-reuse
We don't really have a tool that does AVS so that's the closest. You collect card details and billing details (name, address, etc.) and we send this to the bank and they decide to verify (and often ignore it). There's no guarantee.
If they do verify it, you'll see the result on https://stripe.com/docs/api/setup_attempts/object#setup_attempt_object-payment_method_details-card-checks
cool thank you, is it possible to just receive the AVS result before we decide to proceed with payments or anything else (this is where we can do some custom logic based on that)
no that's impossible. The closest would be to use separate authorization and capture. You accept a payment but don't capture funds immediately, then you look at the checks and make a decision based on that (refund or capture): https://stripe.com/docs/payments/place-a-hold-on-a-payment-method
ok Thank you very much !