#maria795
1 messages · Page 1 of 1 (latest)
You can set the collection_method to send_invoice here, that will tell Stripe to send your customer invoices instead of charging them automatically https://stripe.com/docs/api/subscriptions/object#subscription_object-collection_method
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I want the invoice to arrive in PDF when the payment has already been successfully collected on a recurring basis.
I am not sure if we do that, I know we send an email but forget if it includes the PDF. If you set up a customer in test mode that has your Stripe account's email address and then pay a test invoice as them, you should get the email that we send out. Otherwise you can get the PDF via this property on the invoice object and sent it out https://stripe.com/docs/api/invoices/object#invoice_object-invoice_pdf
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.