Niclas
Niclas

Reputation: 1406

Recurring billing (variable amount and frequency)

I can find a good payment solution for my site and recurring payments. I've been looking around but can't find any great way of doing it.

On our site our customers are spending virtual credits. The charge their account with new credits when their credits are out. We want to provide them with an automatic refill functionality but we do not want to deal with all the PCI-DSS problems that comes with it.

Basically I'm looking for the following functionality:

API::charge(currency,amount, tokenID);

Is there any payment providers out there that can do this?

Upvotes: 0

Views: 540

Answers (1)

John Conde
John Conde

Reputation: 219804

You can't use a normal recurring billing system if the amounts change from cycle to cycle. The best you can do is use a service like Authorize.Net's Customer Information Manager (CIM) to store the credit card and billing information for you and then you create your own scheduling engine that charges against the payment method you have stored for them using CIM. CIM also allows you to make off-cycle payments at any time as well.

Upvotes: 1

Related Questions