So in our app, we do not charge immediately but simply create stripe charge
with capture
set to false
so that customer is not charged instantly.
Question: Should we still issue a Refund
for the customer (in case of app/db error) despite the fact that we created a charge in un-captured mode ?
Thanks for the help
stripe.refunds.create( {charge: chargeId})
Do you know if I use this code, Stripe would charge their fee on the refund amount that was NOT captured? – Alleneallentown