#Amer Bearat

1 messages · Page 1 of 1 (latest)

brisk fjordBOT
trail ruin
#

That line doesn't usually have a material effect on the outcome of the charge, but in this case, it wasn't checked because you're using a test card.

cobalt timber
#

In Stripe, when you perform an address verification check, the response will contain a property indicating the result of the verification. This property is called "address_line1_check".
The possible values of "address_line1_check" are:
"pass": The address was successfully verified.
"fail": The address was not verified.
"unavailable": The verification was not performed due to technical reasons (e.g., the card issuer does not support AVS checks).
"unchecked": The verification was not requested or performed.

#

this was in documentation

#

the field is not populated cause its test environment? @trail ruin

trail ruin
#

Can you link to the section in the docs that says that? As far as I know, it can also be null in both test and live mode

cobalt timber
#

Stipe does not validate the zipcode that goes in with the card?

trail ruin
#

Stripe does, but address_line1 is different from the zipcode. It's a separate field entirely

cobalt timber
#

Then, how to know if the address is valid when I'm creating the payment method?

trail ruin
#

You can't

#

Most places ignore address altogether and only check zipcode

cobalt timber
#

We can send an invalid zip code that does not belong to the card

#

Im only talking about the zip code

trail ruin
#

That's the extent of my knowledge on what is/isn't checked. I wish I could help, but this chat is focused on developers and API integration questions. Our support team will be able to assist you better than I can: https://support.stripe.com/contact

cobalt timber
#

okay thanks

cobalt timber
#

i got this info from the link above

trail ruin
#

Awesome! Okay, thanks. I'll see if we can update that to have null as an option too

cobalt timber
#

ok

#

Im still i don't know why I'm not getting any other value beside of null

pulsar hornet
#

Do you have a test payment I can look at?

#

I just ran a test payment with a zip/postal provided and got a pass result

cobalt timber
#

req_X1Cs6k8RmfDZVI

#

@pulsar hornet ^

#

nevermind its coming as unchecked and not null. Sorry, about the confusing : )

#

unchecked means The verification was not requested or performed.

#

how to request verification?

pulsar hornet
#

NP

#

So you will need to actually confirm a payment intent using that test payment method, at which point you'd see some checks populated

cobalt timber
#

okay make sense

#

thank you i was confused of how all that work