#Sameera
1 messages · Page 1 of 1 (latest)
Hi there!
So you want to chage the customer at regular interval, and with a one time fee upfront?
yes ... for monthly recurring payment, need to have retry also in case first attempt fails
You'd use a Checkout 'mixed' cart to process a single one-time fee payment and initiate the subscription for the recurring payment: https://stripe.com/docs/payments/checkout/how-checkout-works#mixed
does this generate any id/ key for each new customer (subscription) ?
Yes, the session will create a new Customer object (cus_xxx) assuming you don't pass an existing one on session creatiion
we need to combine this with any webhook/ events to capture the data internally?
Yes you'll need to use webhooks for both the initial payment and recurring payments. See:
the retry part is part of the product created in the dashboard ?
What do you mean?
for recurring payment (through subscription), how to accomplish auto-retry in case of failure ?
You'd configure the retry settings in your Dashboard, and the subscription payments will follow those: https://stripe.com/docs/billing/revenue-recovery/smart-retries
Sure!
how to integrate this into mobile app - Android & iOS - built on React Native ?
@steady glacier is there a way to pre initiate this subscription for testing?
You'd use our RN SDK: https://github.com/stripe/stripe-react-native
Well you'd just create a Subscription via the API with test data
@steady glacier sorry I think my wording was incorrect,
Like if I start a subscription for a user then I want to test the auto event of subscription that may happen after a month but I wanna test it now. Is it possible?