Forum Moderators: buckworks
After acquiring a merchant account so we can process credit card orders online, how can our client enter their credit card number on our site (so it is secure) and enter a quote number we previously provided?
We will not have a shopping cart since we have no products and we will be buying wholesale from the manufacturer and selling to our clients. Our web site will have links to all the manufacturer web sites that we represent so our clients can shop.
I presume that once we acquire the credit card number online we would then process the card number via one of those credit card data entry machines.
Your help is greatly appreciated.
The actual internet funds transfer is handled by a separate organsation known as a Payment Service Provider (PSP). There are strong ties between PSP's and banks, some PSP's are subsidiaries of specific banks, others are more free to use different banks.
The Merchant service offered by a PSP allows single transactions of a fixed amount to be transferred by Credit Card over the internet. It does NOT perform the function of guiding a customer through a store, collecting a list of items that he wishes to buy and presenting the total. That is the function of a Shopping Cart, which is a third separate service. (and in your case, you don't need it }
All three companies will require separate payments for their services.
You will also need someone to actually create the Web Pages, and an Internet Service Provider (ISP) to 'host' your pages.
A couple of PSP's you might want to try - SecPay and WorldPay - no recommendation implied
Are you saying that if the customer enters their credit card number on our web site and we have set up merchant service with PSP, that should take care of the money transfer?
Inviting a customer to send you a Credit Card number over an ordinary internet connection is very risky because it is possible for someone to intercept the details.
Normally a secure server connection is used for this purpose (it is encrypted). Setting that up is not easy or cheap. Nor do the banks like you to do it.
It is best to leave all of that that to the PSP who will do it for you. They charge quite a lot but it means you take no responsibility for the customer's card security
A PSP (approved by the bank) will provide the secure conection and the card payment processing.
What happens is that you place some code on your web page that display a button (it says 'Buy' or something similar). The button is a link to their secure site. The user enters CC and shipping details on the PSP's forms, the payment is processed and you get an email telling you what was bought (In your case, the quote number), how much and where to ship.
There are people offering 'cheap' ways to do this but they are all open to fraud. I advise that you stick with a PSP.
For example, I send a big querystring to my PSP that looks like
mypsp.com?x_login=mylogin&x_chargeamount=8000&x_customername=bob
They then return some information that I parse out to tell me if it's approved or declined.
I'd say you're probably best off hiring a coder for a C-Note to do this part for you.
Normally a secure server connection is used for this purpose (it is encrypted). Setting that up is not easy or cheap. Nor do the banks like you to do it.
We will not have a shopping cart since we have no products and we will be buying wholesale from the manufacturer and selling to our clients.
Even some of the bigger PSPs offer systems with holes in them. Get a coder who understands this and make sure he implements all the security tools on offer. Particularly make sure you insist on exchange of hash encryption tokens during the transaction to make sure nothing has tampered with the transmission.
we have no products with prices that we can enter into a shopping cart
Do you really get a lot of people offering up a credit card without knowing how much they're going to be charged? I suspect you're going to have a hard time getting a merchant account like that.
The cart can add shipping and tax to the amount the customer enters from your instructions.
---