#carlosbilangieri_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1281257753955799110
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
You'd need to enable a radar rule if you want to block the payment if it fails avs checks
Avs checks are done automatically
How do you collect payment method details? The payment element?
And you want to collect full address as well?
The steps that I use are
- Create the Customer on Stripe (Full Address Details)
- Create the Payment Method
- Create the Payment Intent
But few banks they are showing a failed message 'DO NOT HONOUR'
I was wondering if the payment faisl as the AVS is not checking the information...
How are you collecting the payment method details from the customer?
And directly creating payment methods is not recommended for the most part
Recommended flow is to use the payment intent to collect payment method details: https://docs.stripe.com/payments/accept-a-payment?platform=web&ui=elements
The setup_future_usage param on the payment intent indicates whether you want to save the payment method or not
We do collect Manually... we can't do it online as we are a windows based aplication...
Customer is doing it over the phone
I see
Then when creating payment method address should go here: https://docs.stripe.com/api/payment_methods/create#create_payment_method-billing_details
And that'll be used for avs check
Yes
Ohh Thanks indeed!