#jmonty-balance-sourcetypes
1 messages · Page 1 of 1 (latest)
Hi, are you able to share the request id that is returning this response? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
I don't have a request Id at the moment, but can you tell me if the "from bank transfer" and "from card payments" are both actually available for transfer?
OR the api call to know what is availabel to transfer out of our platform to stripe connected accounts?
You can specify the transfer type when making the transfer request: https://stripe.com/docs/api/transfers/create#create_transfer-source_type.
So if it fails with the card source_type we can switch to "bank_account" and reattempt? Is there a way to have it automatically reattempt card and bank_account source types without having to get the failure and reattempt?
@dense echo you shouldn't just try card and otherwise fail and switch to the other. You should be tracking the balance of all your connected accounts and know who has what where and when paying out you should know which balance to pull from
jmonty-balance-sourcetypes
Good point. Since Stripe doesn't have this smart ability built-in to switch, then we will build it. Thanks.