#Vitalij

1 messages · Page 1 of 1 (latest)

hearty sluiceBOT
bitter lily
#

Is the one off payment a recurring flat fee? Or literally one-time at the start of the Subscription?

uncut zodiac
#

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

bitter lily
#

And how are you integrating with Stripe? Elements? Checkout?

uncut zodiac
#

Elements

#

Through react native

bitter lily
#

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

uncut zodiac
#

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?

bitter lily
#

1h finalisation is only for recurring invoices, not initial ones. You'd manually finalise as a part of your integration:

  • Listen for invoice.created events on the Subscription creation.
  • Add the additional line item.
  • Manually finalise.
  • Return the PI client_secret from the invoice to Elements to confirm/collect payment.
uncut zodiac
#

Gotcha, let’s me try that!