lolseal
lolseal

Reputation: 15

How do scripts communicate with banks?

What options exist to facilitate payments to banks or credit card companies? Are there programmatic APIs for banks that, say, perform the same actions as paypal might? I'm looking for libraries or options that aren't through an existing provider; that could be developed on their own.

Basically, lately I've become interested in ecommerce and I'm wondering how the communication between a website and a bank or credit card company is made.

I've looked around a bit, but I'm not really sure about the terminology in the field; any resources you could point me at, or good books about the subject would be awesome. Thanks!

Upvotes: 0

Views: 312

Answers (1)

EMI
EMI

Reputation: 826

You get a merchant account with a bank, then sign up with a merchant processor like Cybersource or Litle. The merchant processor provides an webservice API to process authorizations, payments, credits, and voids. You implement the processor's API and then you can do online payments. They act as a go-between for you and the credit card company. You're not likely going to get permission to communicate directly with the credit card's network.

Maybe use this link as a starting point. This is cybersource's API documentation.

Upvotes: 1

Related Questions