#jonesbigasstruckrentalandstorage_best-practices
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/1349636178743132221
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
No, are you asking if you can retrieve the raw CVV from a charge object? No, Stripe doesn't store CVV as per PCI requirement.
not the CVV of the card itself, but rather than response i.e.
M relates to "The CVV provided matches the information on file with the cardholder's bank."
N relates to "The CVV provided does not match the information on file with the cardholder's bank."
I might be wrong if it's on the charge object (though I'd expect it to be there)
maybe it might be on a payment intent?
alternate question is, if we get back AVS rejected as per https://stripe.com/ie/resources/more/what-is-address-verification-service where would i see that?
I try and load https://docs.stripe.com/api#create_charge-verification-responses but it doesn't go to that section
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
that link I found here: https://docs.stripe.com/disputes/prevention/verification
Let's take a step back. What problem that you are trying to solve? Why are you looking at the cvc_check property?
I need to provide the AVS and CVV results back to our third party fraud mitigation provider ๐
e.g.
"avs_result_code": "Y",
"cvv_result_code": "M"
And what does Y and M mean?
i'm aware that i can enable a radar rule to block payments that fail the postal code validation
i want to see where that result is ๐
https://docs.stripe.com/api/cards/object#card_object-address_zip_check I believe this is the equivalent field in stripe, and you can check the API reference for the list of possible valudes
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
hmm okay thanks ๐
i did just discover https://support.stripe.com/questions/check-if-a-card-is-valid-without-a-charge
as well as see the results of the CVC and zip code checks, by saving the customerโs card in Stripe.
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
i'll keep digging