vote up 0 vote down star

How does one determine that the card a person is entering is a debit card, check card, or credit card?

I am looking at this for web payments in the US only. This is for utility billing.

flag

9  
you ask them and they tell you. – SilentGhost Sep 25 at 20:16
did they enter a pin number? if yes, then it's a debit card; else unknown. debit cards can be used as credit cards so it really doesnt matter anyway. – geowa4 Sep 25 at 20:17
2  
Debit Card == Credit Card, until you try something like renting a car. Then the differences become painfully obvious. – Robert Harvey Sep 25 at 20:18
@geowa4, that isn't fool proof though as in the UK for instance debit cards don't need to have a PIN number entered when completing a transaction, just the 16-digit card number, – Sbm007 Sep 25 at 20:21
@geowa, some credit cards now use PIN numbers as well. – Brandon Sep 25 at 20:25
show 1 more comment

4 Answers

vote up 2 vote down check

I'm thinking your getting confused that when you swipe the card in a store the machine knows which kind of card you've got. Although with my Dutch debit card I always got the option to choose..

But I'm guessing the magnetic strip stores more than just the number, and the card readers use that to determine your type of card.

You'll just have to join the other applications/sites and ask the user :)

link|flag
The magnetic strip makes sense. – Mike Wills Sep 25 at 20:24
1  
There are 3 tracks with information. When I checked my VISA card I saw that it had my card-number and my name. Don't remember what else there was. – some Sep 25 at 20:28
vote up 4 vote down

not sure what you need that for, but all POS systems i'm aware of ASK THE USER to specify the type of the card.

you can run Debit as Credit - no need for pin number
you can run Credit as Debit - enter in your pin, and transaction will count as cash advance

link|flag
See my comment for chaos's answer. – Mike Wills Sep 25 at 20:20
looking at your edit: if you're writing a web-app, you might as well treat ALL CARDS AS CREDIT – roman m Sep 25 at 20:29
I'd have to agree with your answer. All of the vendors would benefit financially from forcing the customer to run their card as debit, yet every single vendor allows the customer to make that choice (often with misleading wording that tricks the customer into selecting debit). If there were a valid way to make that determination, most vendors would force the customers with debit cards to actually run them as debit cards. – Mayo Sep 25 at 20:30
I don't know the cost of Debit vs. Credit for processing, but I have heard in the past that debit transactions are cheaper for the vendor thus the push to debit. – Mike Wills Sep 25 at 20:34
vote up 0 vote down

Wiki has lists of credit vs. debit prefixes

However, IIRC some cards may be used as both credit and debit depending on context.

link|flag
vote up -1 vote down

The Luhn check can be used to determine if something is a valid CC (algorithmically) - not sure if that applies for debit cards.

link|flag
that applies to ALL cards, but has nothing to do with the question :) – roman m Sep 25 at 20:26
Sure it has to do with this question. If it applied only to credit cards, for instance, and there was a different check only debit cards, this would be 50% of the solution :) – Chris Simmons Sep 25 at 20:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.