Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invoice for a one-time payment on Stripe

Does Stripe generate invoices for one-time payments (not subscriptions)?

It seems in the docs that invoices are only part of their "Subscriptions" feature.

like image 651
Arnaud Avatar asked Jan 22 '18 23:01

Arnaud


1 Answers

Stripe provides 2 types of invoices: "One-off Invoices" (https://stripe.com/docs/billing/invoices/one-off) and Subscription Invoices (https://stripe.com/docs/billing/invoices/subscription).

Stripe also automatically generates a hosted invoice url that you can send to customers and they can pay the invoice, as well as automatically generates a PDF of each invoice. Both of these items can be found in the response from "retrieve an invoice" in the API. (https://stripe.com/docs/api/invoices/retrieve?lang=python)

like image 94
dave4jr Avatar answered Sep 29 '22 08:09

dave4jr