-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No response for CVV & AVS verification through global payments for card tokenization #5
Comments
Hi @storagerepo , Your Authorization and Charge snippet looks fine, so I'd verify that your card and address objects you're passing in during the authorize call have the info you expect. I'll send you an example via the support email thread you mentioned. |
Hi @MSmedal, Thank you for the reply. I looking forward for the example snippet from you. In the meanwhile I figured out that I missed Cvv in the Authorization call . Now I can able to request for cvv verification. Tokenization Response
During this tokenization call, I can get AVS and CVV verified and get card token. Next I will process this authorize call, Authorize call request
Authorization Response
In the above response, it returns AVS not requested and token is None. |
Hi @storagerepo , would you mind replying in our support email thread? The above all looks normal and our certification team should be able to proceed with your certification. |
Hello @MSmedal I am having the same issue. Can you please let me know where should I be reaching out? |
Hi @ben9543, our certification help team can be reached at [email protected] |
Hi,
My software verification process got failed due to not requesting for AVS and CVV verification. The review team explained the app is not requesting for CVV and AVS verification.
Actually I designed my app to first request for token from the card details collected.
Tokenization snippet
response=card.verify().with_currency('USD').with_address(address).with_request_multi_use_token(True).with_allow_duplicates(True).execute()
I can get token from response and I use the same token to Authorize the card and charge it.
Authorize and Charge snippet
authorize_response = card.authorize(total_total).with_currency("USD").with_address(address).execute() payment_response = Transaction.from_id(authorize_response.transaction_id).capture(total_total).execute()
On charge response I get response code 00 and status APPROVAL. Where I am missing AVS and CVV verification here. I could not find any documentation on this. Thank you.
The text was updated successfully, but these errors were encountered: