#yan014
1 messages · Page 1 of 1 (latest)
No you can't use customer credit balance to pay a paymentIntent or charge
If you don't use Stripe invoicing, you should consider arrange a refund to your customer by other means
I have to refund the customer and then ask him to make a new payment?
Alternatively you can "use" the credit in your own invoice system by reducing the chargeable amount based on the customer's available balance, and then create a customer balance transaction https://stripe.com/docs/api/customer_balance_transactions/create to deduct the balance from this customer.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thanks but the money need to go on a Connected Account
You mean you want to create a transfer to send the funds to a connected account?
Yes
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yes but i cannot use the credit of my customer right ?
That's entirely up to you
For example, if you want to transfer $2 to a connected account, you just need to create a customer balance transaction to deduct $2 from the customer's balance
Or this balance at the customer's corresponds to money available on our "general" Stripe account and I'll just have to make a transfer from our general Stripe account to the Connected account and then decrease the customer's balance. Is that it?
No, that's the customer's balance, not your Stripe account balance
So I do:
- A transfer whose destination is the connected account, but I have to specify which source in my transfert ?
- A customer balance transaction to reduce our customer's balance?
No you don't need to specify a source when creating a transfer