#Vitalij
1 messages · Page 1 of 1 (latest)
Is the one off payment a recurring flat fee? Or literally one-time at the start of the Subscription?
It’s a one off at the beginning of subscription. It is basically a deposit we hold to and credit towards last bill if customer leaves
And how are you integrating with Stripe? Elements? Checkout?
Ok, got it. In that case you'll need to manually add a line item to the initial Subscription invoice that is generated before it is finalised
And if we want to have that initial invoice paid while customer is in the app? Would that work as it takes 1 h to finilise invoice?
1h finalisation is only for recurring invoices, not initial ones. You'd manually finalise as a part of your integration:
- Listen for
invoice.createdevents on the Subscription creation. - Add the additional line item.
- Manually finalise.
- Return the PI
client_secretfrom the invoice to Elements to confirm/collect payment.
Gotcha, let’s me try that!