Reputation: 1
I'm developing an application for a Point-Of-Sale, and there is a step in the process where I need to send the gateway an information saying if the card is Credit only, debit only or has both applications in it. Is there an EMV tag or something similar that I can use to find out this information?
Upvotes: 0
Views: 323
Reputation: 76
Terminals have two ways to build the Candidate List of applications:
Exhaustive search of known Application Identifiers (AID): Terminals have a list of supported AIDs (based on the brands and products they support) and will simply issue a SELECT
for each AID in the list; if successful, the AID is added to the candidate list.
Optionally, they may support the PSE method: This involves reading a file in the card to see what applications are offered by the card. Please note:
Upvotes: 1