I want to know avs checking feature. That is, I want to make the payment of correct billing addresses.
I want to know avs checking feature. That is, I want to make the payment of correct billing addresses.
When you tokenize the card (I am assuming you are still using the tokens endpoint) you need to include the zip:
{ "card": { "number": "redacted", "exp_month": "redacted", "exp_year": "redacted", "address_zip": 56555, "cvv": "123" } }
When you make the charge the response's source will contain address_zip_check:
"source": { .... "address_zip_check": "pass", }
no, you are wrong on your API. I added address_zip. But I can not see the address zip check.
I ran the requests, so I am not wrong. Are you looking at the response from the token endpoint instead of making a charge and looking at the charge response?
look at this
1 Person is following this question.