Discussions
Creating Sales Order
Hi All,
I am trying to create a sales order by passing the customer internal id and item internal id through web services.
And also I am passing the credit card deatils through web services.
To get the authentication of the credit card details, I am using the following functions.
AvsMatchCode casm = so.getCcAvsStreetMatch();
AvsMatchCode cazm = so.getCcAvsZipMatch();
AvsMatchCode cscm = so.getCcSecurityCodeMatch();
String ac = so.getAuthCode();
Boolean ca = so.getCcApproved();
Boolean ga = so.getGetAuth();
But all are returing null values. How to check the Credit card details are valid or not?
Thanks in advance.