It seems to me that creating several dozen subscription plans on Stripe is indicative of a deeper problem: that you have several dozen different prices consumers end up paying. How about instead you advertise the prices that consumers will actually have to pay? Bump up all of your prices across the board by the expected cost of taxes to even out the cost. (Unless there's some law about not charging consumers in diffe…
Stripe Would Be Perfect If...
11–20 of 41 posts
Re: Stripe Would Be Perfect If...
#12You can make invoices by using their webhooks ( https://stripe.com/docs/webhooks ). Just email your customers when a billing event occurs
Indeed, and that is what we're doing right now. However, it would be nice if they dealt with creating nicely formatted invoices and emailed them so we don't have to.
I love Stripe. They do one thing well, better than anyone else I have used. It's not perfect for everyone, but anytime someone tries to be perfect for everyone they stop being perfect for anyone.
Re: Stripe Would Be Perfect If...
#13I'm sympathetic to Liam's grief with calculating taxes, and handling the edge cases of people moving around different tax zones. It's not exclusive to Canada, of course. However, my perspective is that Stripe sits one level lower on the infrastructure map than a service like Recurly ( http://recurly.com ) which is designed to abstract the pain of subscription management away from app developers. I use Stripe first an…
Stripe offers a low-level API and a higher level API and framework can be built on top of that. So what we really need are some high-quality django/rails modules that deal with all the mundane bookkeeping. Then you can easily fork the module to make adjustments where needed.
Re: Stripe Would Be Perfect If...
#14I'm sympathetic to Liam's grief with calculating taxes, and handling the edge cases of people moving around different tax zones. It's not exclusive to Canada, of course. However, my perspective is that Stripe sits one level lower on the infrastructure map than a service like Recurly ( http://recurly.com ) which is designed to abstract the pain of subscription management away from app developers. I use Stripe first an…
Re: Stripe Would Be Perfect If...
#15You can make invoices by using their webhooks ( https://stripe.com/docs/webhooks ). Just email your customers when a billing event occurs
Indeed, and that is what we're doing right now. However, it would be nice if they dealt with creating nicely formatted invoices and emailed them so we don't have to.
Stripe is a payment processor. If you want invoicing, use (FreshBooks|Xero|Blinksale|etc).
"It would be nice if" is often the death of good product design.
Re: Stripe Would Be Perfect If...
#16Earlier quoted context omitted.
Indeed, and that is what we're doing right now. However, it would be nice if they dealt with creating nicely formatted invoices and emailed them so we don't have to.
Where does that end? They're taking your payments, making your invoices, why not be an OAuth provider for your users? Host your app? Store and ship your physical products? I love Stripe. They do one thing well, better than anyone else I have used. It's not perfect for everyone, but anytime someone tries to be perfect for everyone they stop being perfect for anyone.
Re: Stripe Would Be Perfect If...
#17You can make invoices by using their webhooks ( https://stripe.com/docs/webhooks ). Just email your customers when a billing event occurs
Consume a stripe webhook / send an email:
http://dl.dropbox.com/u/2454/Slingshot/Pictures/Customer.io-...
Nicely formatted:
http://dl.dropbox.com/u/2454/Slingshot/Pictures/Customer.io-...
Re: Stripe Would Be Perfect If...
#18Earlier quoted context omitted.
Indeed, and that is what we're doing right now. However, it would be nice if they dealt with creating nicely formatted invoices and emailed them so we don't have to.
Where does that end? They're taking your payments, making your invoices, why not be an OAuth provider for your users? Host your app? Store and ship your physical products? I love Stripe. They do one thing well, better than anyone else I have used. It's not perfect for everyone, but anytime someone tries to be perfect for everyone they stop being perfect for anyone.
Re: Stripe Would Be Perfect If...
#19It seems to me that creating several dozen subscription plans on Stripe is indicative of a deeper problem: that you have several dozen different prices consumers end up paying. How about instead you advertise the prices that consumers will actually have to pay? Bump up all of your prices across the board by the expected cost of taxes to even out the cost. (Unless there's some law about not charging consumers in diffe…
If I understood your suggestion correctly people dealing with these problems should do like we do here in Brazil: use the taxes to compose the final price so if I have a product that I want to sell for, let´s say, 10USD and will cost me an average 10% in taxes I would advertise it for 11USD and just deal with the taxes problem internally in my app and not by creating N different plans on the payment processor.
Re: Stripe Would Be Perfect If...
#20Earlier quoted context omitted.
Where does that end? They're taking your payments, making your invoices, why not be an OAuth provider for your users? Host your app? Store and ship your physical products? I love Stripe. They do one thing well, better than anyone else I have used. It's not perfect for everyone, but anytime someone tries to be perfect for everyone they stop being perfect for anyone.
I don't think it's that crazy to wish for emailed invoices from a payment processor. Unlike the examples you provide, it's a pretty natural and easy add-on to such a service which many providers (eg, PayPal, Square) do.
Stripe provides hooks that allow you to easily send your own invoices--that's a developer friendly feature that maintains flexibility (everyone will want invoices to work differently).