#joe8912
1 messages · Page 1 of 1 (latest)
If you need to send portions to multiple accounts you need to go with this flow: https://stripe.com/docs/connect/charges-transfers
That way you can just initiate several transfers manually
Ill take a look. thank you
No problem
I'm currently using a test connect account for the transfer account when I try Stripe.Transfer.create I always get insufficient funds. the weird thing is I have funds on both platform and connect account. I also tried looking for the manual payout option and it doesn't appear. Is it because I'm on test mode?
Can you share the request id?
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
yes id is req_tOzMPjBv7qreYd
Can you retrieve your balance on the platform? https://stripe.com/docs/api/balance/balance_retrieve
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Your balance may be in pending
not available
Also consider using source_transaction on the transfer: https://stripe.com/docs/connect/charges-transfers#transfer-availability
That helps avoid the insufficient funds issue
Recommend reading that linked section
{
"object": "balance",
"available": [
{
"amount": 0,
"currency": "usd",
"source_types": {
"card": 0
}
}
],
"connect_reserved": [
{
"amount": 0,
"currency": "usd"
}
],
"livemode": false,
"pending": [
{
"amount": 93869,
"currency": "usd",
"source_types": {
"card": card#
}
}
]
}
ok got it thank you!