I am creating an option for customers to key in their card info rather than swiping. It's my understanding so far that this sort of transaction would be a non-EMV transaction. I have it working but I am wondering how the transaction ID can be retrieved after the transaction has posted.
With the transactions where the customer swipes/inserts their card, it's incredibly easy to retrieve the transaction ID just by using something like this:
net.authorize.aim.emv.Result result;
result.getTransID();
I don't see this option for non-EMV transactions. Can anyone point me in the right direction?
06-10-2021 12:15 PM
Nevermind, I have figured it out. I was using the wrong type of result to assign the transaction result to. It should have been net.authorize.aim.Result.
06-14-2021 09:24 AM
Non-EMV are those which reads data through magnetic strips and do not hold the card during the transaction.
09-29-2021 09:55 PM - edited 09-29-2021 09:56 PM