- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to get the cvv to be verified on AuthorizationRequest AIM
i've searched the other messages but didn't saw the answer -
I send a request ( authorization only , and the capture ) :
var request = new AuthorizeNet.AuthorizationRequest( cc_number, cc_date, total, "", false); request.CardCode = cc_code; request.AddCardCode(cc_code); var gate = new AuthorizeNet.Gateway( ConfigurationManager.AppSettings["loginId"], ConfigurationManager.AppSettings["transactionKey"]); var response = gate.Send(request);
as you can see i add and send the card code - but i never see any implifications on the response , i guess the reason would be Sandbox , but with my actual credentials , would it test the CVV as well ?
and if not- how could i make sure the CVV is being authenticated ?
thanks
โ12-07-2014 08:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
On the sandbox you can test it with
http://developer.authorize.net/tools/errorgenerationguide/
FYI, the credit card issuer, might or might not rejected an transaction by the fail ccv response.
โ12-07-2014 08:13 AM - edited โ12-07-2014 08:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
but what i get there is "P" ( no proccesed )
where can i set the state so it will proccess and test the cvv ?
โ12-07-2014 08:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Are you using code like 900? or are you running in testmode?
โ12-07-2014 09:07 AM - edited โ12-07-2014 09:07 AM

