Variable amount recurring billing [closed]

2019-02-12 02:59发布

Hi i'm looking for a payment gateway that can do recurring billing that changes month to month. Fogbugz do this, they charge based on how many active users there were that month. All of the APIs that i've found only let you set a fixed amount and it's difficult/impossible to vary the subscription amount month to month.

Has anyone come across any services that do this?

8条回答
劳资没心,怎么记你
2楼-- · 2019-02-12 03:15

All the merchant services providers I have worked with (quite a few of them BTW) offer a recurring billing. Regarding changing the amount every month, it is up to you to notify the merchant service. You can do this by making a call to the service whenever a new user is added/removed.

查看更多
疯言疯语
3楼-- · 2019-02-12 03:20

Our gateway can do exactly what you ask:

  • Store payment information (check or credit card) encrypted and tokenized.
  • Bill a variable amount
    • Add fixed recurring amount on any schedule
    • add multiple cards to the account so if one fails, it cascades to the next
    • Set any start date, stop date etc.
    • Plus you can accept payments from all inputs- retail, mobile, Electronic invoicing, ecommerce, web pay page. It replaces authorize.net, Payflow Pro and similar. An API is available. There are multiple methods to rebill a customer. The most simplistic is in this recurring billing video. As per others above, the system does need to be told what to bill, whether via API or manual entry.
查看更多
SAY GOODBYE
4楼-- · 2019-02-12 03:28

BrainTree might be a good solution if you are manually triggering the re-bill each month. They will give you a 'token' that represents the credit card number originally supplied.

You can store this number, which is worthless to a potential thief.

查看更多
姐就是有狂的资本
5楼-- · 2019-02-12 03:31

Recurly does this. You simply need to track usage on your side and post it to the Recurly API. We support 'metered billing'.

[Full disclosure - I am a co-founder of Recurly and therefore biased...but objective]

Here is a demo video for how you would accomplish variable amount billing using Recurly's API. Video: Variable or Tiered Pricing tutorial for recurring billing with Recurly

Docs for this scenario.

http://docs.recurly.com/subscription-plans/metered-billing

Cheers Dan

查看更多
爷的心禁止访问
6楼-- · 2019-02-12 03:32

im not sure of any payment gateway that does this natively, however, you can set up the recurring billing profile then modify it in your code as needed. say if you charge .05 for each login then each time they login change the profile to add .05 and at the end of the month set it back to its default.

bottom line, is that without communication, there is no way for a payment gateway to know how much or little to charge your clients.

查看更多
Deceive 欺骗
7楼-- · 2019-02-12 03:37

I have a slight preference for managing recurrence on my end and letting the merchant gateway be as dumb as possible. It means a little more bookkeeping on my part, but once the additional tracking is built in, you know each transaction and can present it to your customer in your system, with the billing gateway just taking the sum of the open transactions, running a single charge, and closing the transactions out. Doing it on your side also means that you don't have a recurring charge marching relentlessly toward its recurring date that you have to frantically fix if something goes wrong between your application and the gateway and the new charge doesn't get set.

In the end, it should be about as much work as figuring out how to remove or change the existing recurring charge, but you get the benefit of knowing for sure that the correct charge goes through every time.

查看更多
登录 后发表回答