#nancyyeh_code
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1250146246904123503
đ Have more to share? Add details, code, screenshots, videos, etc. below.
Hello! Go to your Radar rules page and enable the Block if Postal code verification fails rule there.
gotcha! So one more question on verification is possible to require the card holder name input simply by changing some settings in the Stripe or in code? Is it possible to verify cardholder name data?
It depends on your integration, but it would probably require a code change. Can you tell me more about your integration? Are you using the Payment Element, for example?
Yes, we are using the PaymentElement from react-stripe-js
It pretty standard using setup intent and paymentElement.. let me know if you want more ifnormation.
The Payment Element doesn't always collect the cardholder name itself. You also can't force it to. You can set name to auto, but that doesn't guarantee it will be collected: https://docs.stripe.com/js/elements_object/create_payment_element#payment_element_create-options-fields-billingDetails
If you always want to collect it you need to create your own name field, set name to never, then supply the name you collect in code.
and is there a way to verify the name?
You mean like get confirmation that the card issuer said that was the correct name or not?
yes
No.
so based on the documentation here => https://docs.stripe.com/disputes/prevention/best-practices#collect-information it recommends to collect name for disputes.
so this would have to be outside the paymentElement?
Yes, if you want to guarantee collecting it.