#kyle1221
1 messages · Page 1 of 1 (latest)
It's possible yes, but not without quite a bit of heavy lifting (as there wouldn't even be an invoice at that point)
What's the use case?
the flow is
this is for recurring and one time payment flow
- Admin can create an invoice
- Admin can mark as manual paid thru check no or Cash or admin can send invoice to customer email
- they can pay thru that invoice
basically im trying to create manual pay and manual creating of invoice
i just wanna know if that also applicable to recurring price
Sure, just use collection_method: 'send_invoice' when creating the subscription. That way the invoice requires manual payment and the customer won't be automatically charged: https://stripe.com/docs/api/subscriptions/create#create_subscription-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.
thank you so much ,, ill check it