views:

33

answers:

2

Hi there,

We want to add billing capabilities to our rails-driven web application. I've come across two plugins that do that - Service Merchant (which is free) and SaaS Rails kit (which costs money).

Does someone have some experience with these plugins (or others with the same functionality)? which one would you recommend?

Thanks!

+1  A: 

No experience with those plugins, but I highly recommend using chargify to do recurring subscription billing. You'll use their rest-based API to create 'subscriptions' and it handles all of the charges, emails, and canceling subscriptions for you.

You'll pay chargify per user on a monthly basis (but it's cheap), and you pay the credit card processor, but there's no setup fees to chargify to get started.

http://chargify.com/

Jesse Wolgamott
+1  A: 

I looked at both of them and unfortunately neither met my needs.

You say that you want to "add billing capabilities" -- but how complex are your bills?

  • Subscriptions?
  • Multiple subscriptions possible per customer at same time?
  • Any variable monthly costs? (eg the customer pays every month, but the amount they pay varies depending on something.)
  • Any additional items that aren't monthly? (eg setup charge, consulting, etc)
  • Billing subscriptions in advance? (like the phone company bills monthly service.) Or billing in arrears? (Customer uses service, then you bill them.)

There are very expensive companies you can outsource this stuff to (~ $25K - $50K and up for initial setup). Eg www.zuora.com

Or you can roll your own and charge the credit card using ActiveMerchant. Be sure to store the credit card info at your card processor (eg Authorize.Net Customer Information Manager).

If you're venture backed, then consult your VC for ideas. It may be worthwhile for you to outsource the whole thing.

If you're a lean startup, use one of the low-end guys if you have a simple subscription model. If your billing is more complex than that, the right answer may be to roll your own.

Low end subscription billers: Chargify, recurly, Google for "subscription billing"

Larry K