New startup - how to handle billing?


10

My subscription-based application is going to be written in Ruby on Rails; I have two routes I can go as far as billing is concerned:

  1. I can use a hosted service that takes care of managing the subscriptions for me, such as Spreedly, Recurly, or Chargify. My understanding is that these services will handle all of the customer signup details, handle the month-to-month billing and make sure the money goes into my account.
  2. I can purchase the SaaS RailsKit which seems to do the same thing except I'm responsible for setting it up myself; it provides the framework to talk to the payment gateway but nothing else.

Since this is my first ever startup and I'm fairly new to the idea, would I be better off "outsourcing" this capabilty to a company that knows what they're doing instead of trying to do it myself? The downside of course is that there is a monthly fee involved with using a hosted service, and this reduces my profit, but the additional features they provide may be worth the cost.

Any suggestions?

Payments Saas

asked Nov 20 '09 at 03:06
Blank
Wayne M
211 points

7 Answers


8

It's always best to stay focused as close to your core business as possible, especially when you're first starting up. If the costs associated with outsourcing your subscription/payment processing is not too costly, it would likely be your best bet.

You'll have enough challenges and headaches when launching your business, that the last thing you'll want to be dealing with is some bug/error in your custom subscription/payment processing code...

Later when the business is doing well, you can decide to build your own system, and bring it in house to help improve your profits.

answered Nov 20 '09 at 03:33
Blank
Brian Swanson
341 points
  • +1. But make sure you can take the credit card numbers with you, else you can't easily leave. People will have to reenter numbers, which they might, but it's a chance for them to leave. – Jason 14 years ago

6

In general, I'm all in favor of letting other providers handle things that are not core to my business, as Brian and James are saying.

This one does IMHO deserve more attention though. Customers are core to my business, and customer credit card info is a legally sensitive topic.

Here is a good overview of some larger providers in this space.

Benefits of outsourced subscription management:

  • Short time to market; low capital burn for initial development of your own product.
  • Heavy PCI compliance requirements are handled by someone else (as you don't store credit card info yourself) (and if it's not handled properly, you have a socially acceptable scapegoat in the SaaS subscription provider).
Downsides of outsourced subscription management:
  • Integrating subscriptions with your own accounting & invoicing infrastructure is a bit harder when it's off-site.
  • If you ever, for any reason, need to switch subscription management provider, you face some nasty issues. They have the credit card info of all your customers, so this means inconveniencing all your customers to re-enter their card info. And arguably, some of your customers will not do this, and will thereby stop being your customers.
A decision should be based on:
  • How short on cash are you in the initial development fase; how valuable is short time to market for you.
  • How well are you set up to handle PCI compliance and secure hosting in general.
  • Do you see a future need to be very flexible with regards to subscriptions, to have many subscription models and additional charges, or not.
  • The size of the current and future cash flow; i.e. how big will the subscription providers future cut be.
  • Most important, the subscription providers staying power, and future business practices (of course very hard to estimate).
answered Nov 20 '09 at 18:58
Blank
Jesper Mortensen
15,292 points

3

I agree with Brian Swanson that you should look at staying close to your core.

Generally, you should outsource or buy whatever isn't going to be part of the core app, then, as you get excess money and want to stop supporting others, then you can look at writing your own applications and take over the control.

But, if you are going to do that you want to make certain you have a good separation between your app and the solution you start with, so you may want a module that serves as the interface, so that later if you decide to change, you change in one place and your application switches happily.

If you don't design up-front for this, then it will be too expensive to replace these other solutions with your own.

answered Nov 20 '09 at 03:38
Blank
James Black
2,642 points

3

Consider not having an automated billing system at first. Collect the cards yourself and bill yourself.

Sounds retarded? It's not:

  1. Takes very little time until you have a lot of customers, at which time you can afford to implement a real system.
  2. Gives you a chance to talk to customers directly, which is invaluable.
  3. Gives you a chance to make any billing/pricing changes you want.
  4. At the mid-point between wanting an automated system and manual efforts mounting, an inexpensive admin service can do the bookkeeping for you.
  5. "Automated billing" isn't as automated as you think. There's always problems you have to resolve manually.
answered Nov 21 '09 at 14:12
Blank
Jason
16,231 points
  • Jason, I don't understand how you can charge credit cards without setting up a merchant account and going through a third-party processor? Is there a way to do this? – David Tuite 11 years ago

3

Subscription billing is a major headache for startups. It's easy to get it wrong (as I did initially). Billing is what Geoffery Moore would call "context" it's not the core of your business. I would definitely use a vendor: I've switched over StartupToDo (a Rails app BTW) to Amazon Simple Pay Subscriptions. Works great worldwide, but you have to be in the U.S. Second alternative is Avangate (does PayPal which Amazon [now a direct competitor to PayPal] does not, you can reside practically anywhere) which I will be implementing soon to support those customers who want PayPal.

answered Nov 22 '09 at 06:13
Blank
Bob Walsh
2,620 points

0

Since I'm the creator of the SaaS Rails Kit, I'll chime in. :) Many people have found the Kit useful to get them launched faster, so it sounds like you are in the sweet spot for what the Kit can do.

Jason's right, you can certainly get by with a manual process in the beginning, and switch later when you are making real money, or when it starts becoming too tedious. However, based on my own experience with handling the billing for Catch the Best (which was the genesis for the SaaS Rails Kit), it can be a hassle to make that switch later.

If you're looking for plug in and go, both the services you mentioned and the Kit fit the bill: handling account creations/upgrades/cancellations, running the billing every month, etc. The Kit also has a convenient way to implement tiering (project limits, user limits, etc) for your various price plans inside your app.

Either way, I'd definitely recommend not building it yourself -- life's too short for that drudgery. :)

answered Nov 21 '09 at 16:58
Blank
Benjamin Curtis
101 points

0

Frankly, all the answers are right. Bottom line? Depends on how big a business you are or intend to become

Do you have the resources, or intend yourself, to manage billing, payment processing, customer service, etc.? Can you benefit from a personal touch with customers via their payment process?

Outsourcing does take most off your plate and sure, it also comes with some cons nor does it handle everything. But, it comes with other benefits not readily considered such as direct integration with a CRM service, your bookkeeping (us? ), email platform, etc.

answered Dec 4 '09 at 04:21
Blank
Paul O'brien
521 points

Your Answer

  • Bold
  • Italic
  • • Bullets
  • 1. Numbers
  • Quote
Not the answer you're looking for? Ask your own question or browse other questions in these topics:

Payments Saas