Reputation: 137
I am using Stripe payment gateway in my project (App.net). I want to implement automatically recurring payment (customers are automatically charged monthly on a particular date).
How can I implement this? Does Stripe support recurring payments?
Upvotes: 9
Views: 27178
Reputation: 938
Stripe does support subscriptions via its billing engine. You can implement a subscription, which has a product and a plan. The plan will outline how often the customer is charged (weekly, monthly, yearly or custom). You can also implement 3D secure payments to reduce fraud and increase payment retention. I have set the links below.
Upvotes: 2
Reputation: 3394
Stripe does indeed support recurring payments. You can find details on implementing them in Stripe's Billing quickstart.
Upvotes: 14