#aasdfasa3
1 messages · Page 1 of 1 (latest)
hello! no, SetupIntents does not support BNPL
would there be a different way i can implement something like I mentioned? Where we get a deposit up front and then the rest later?
how long later will the service be rendered? i.e. what's the timeframe? 7 days?
It could be a month
you can always collect a payment i.e. the deposit first (save the payment method) then charge it later : https://stripe.com/docs/payments/save-and-reuse
when charging it later, you can always auth the amount to be charged 7 days before, https://stripe.com/docs/payments/place-a-hold-on-a-payment-method, then capture the payment after service is provided
Yes, we do that already, but are adding BNPL to our system. So I'm trying to figure out how BNPL works with this flow of taking a deposit and charging the rest later.
i'm not sure i understand. BNPL already collects the first installment upfront so isn't that the flow that you want as it is? e.g. https://stripe.com/docs/payments/afterpay-clearpay#collection-schedule
you as the merchant get the full amount upfront
If we have a purchase for a $200 service to be rendered in the future, and want to collect a $50 deposit now... we would need to charge the full $200 with BNPL I guess? Currently we collect $50 and charge the $150 when services are rendered.
yes, just charge the full $200 with BNPL. It's on the BNPL provider to collect subsequent installments from the customer.
OK, just the difference is that the customer is agreeing to pay the full amount instead of just a deposit, which they could get a portion of back if they cancel.
yep. I guess you would probably want to consider your T&Cs for using BNPL
If we collect full amount with BNPL, are we able to give a partial or full refund still?
yes, you can still refund both full and partial. Stripe fees won't be refunded though.
OK, same as any other payment method, great to know!
BTW, for BNPL, do we have to completed the charge in 7 days? I see this doc, but can't find how BNPL relates to it:
https://stripe.com/docs/payments/place-a-hold-on-a-payment-method
Does it support having a separate capture?
oh actually it does, sorry