English 中文(简体)
重复计票(数额和频率)
原标题: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:

  • The payment provider should expose (secure hosted pages) where the customer provides all credit card details.

  • My site loads the hosted pages with some customerID (to be able to map tokenID with customerID in the last step).

  • 当客户登记其信用卡时,付款提供人通知我,信用卡的细节已贴上客户信息数据库。

  • In the future I charge my customer with an API call:

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

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

最佳回答

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.

问题回答

暂无回答




相关问题
How to create and submit an ACH file?

How can I create an ACH file in a Java application (although the language isn t important) and submit it to be processed? I need to know the format of the ACH file and then what to do with it ...

Zaypay alternatives for payments using call or sms

We are currently trying to implement a payment provider in zaypay for paying for services using sms or by calling a number. We already have google checkout and paypal working for regular payments but ...

Looking for a payment gateway [closed]

I m looking for a payment gateway company so we can avoid tiresome PCI-DSS certification and its associated expenses. I ll get this out the way now, I don t want Paypal. It does what I want but it s ...

recurring payment on a specific date

I need to create a recurring payment that should process only twice. First, I need to get an advance amount and remaining amount should be payed in another date. Now, I would like to have the time ...

ecommerce stock management with external payment gateway

this question is similar to this one but with a twist (so the answer accepted for the older question is not valid in the following scenario) i have a site for selling tickets (PHP/MYSQL). Suppose i ...

热门标签