#theproofficial
1 messages · Page 1 of 1 (latest)
Did you use Transfer API? Any error message?
Indeed I am using transfer. My error message is: Error processing withdrawal: You have insufficient funds in your Stripe account for this transfer. Your card balance is too low. You can use the /v1/balance endpoint to view your Stripe balance (for more details, see stripe.com/docs/api#balance).
I also can't seem to add funds anymore even though it used to work a few months ago when I was working on this:
Okie, there could be some issue with your Account as the message says, so you would want to reach out to Support team to check in details.
Btw if you use Transfer with source_transaction, you may be able to transfer not from your balance https://stripe.com/docs/connect/separate-charges-and-transfers#transfer-options
I use:
// Transfer the amount from the user's Stripe account to the connected account
await stripe.transfers.create({
amount: withdrawalAmountWithFeeInCents,
currency: "eur",
destination: user.connectedStripeAccountId,
});```
Yes, is this amount link to any payment intent? If so you can use source_transaction as the Doc above