#Sh0w3D - invoice
1 messages · Page 1 of 1 (latest)
Hi there!
Once an invoice is finalized, you will have access to the hosted_invoice_url property https://stripe.com/docs/api/invoices/object#invoice_object-hosted_invoice_url
And you can send that URL to your customers to pay the invoice.
How much time it takes to finalize invoice?
If you use auto_advance, it should be automatically finalized after one hour https://stripe.com/docs/invoicing/integration/automatic-advancement-collection#toggle-auto-advance
But you can finalize it sooner if needed by calling https://stripe.com/docs/api/invoices/finalize
Does the hosted_invoice_url property contain url to STRIPE HOSTED invoice page?
Yes exactly.
So I can create an invoice, fill it with item data, then finalize it, then redirect customer to payment url, and then send paid invoice to customer?
Yes!
Ok, thanks