#thanok_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1240293789931798560
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Are you sure the funds are "available" and not just pending in the connected account balance?
I'm only having access to the main account (I saw the total of the connected one, I don't think there is a place to show "pending" like on the main). But this account having only money from the main transfered all passed success from 10 to 13 Mai)
Hmm okay, looking..
But I can try to ask the specific account to be sure
Or does the "virement a venir" lock the money it's not a information of all the payment ? in this case that's mean the balance is 0
There is auto cash out every 3 days in the parameter on the connected account (for information), but I don't see the cashout started yet in the virement table
It might be the automatic payout locking the funds, checking..
thanks a lot ๐
Still looking..
๐ค
If you try to trigger the reversal again, are you seeing the same error?
In our logs, it shows there isn't enough funds in the connected account to cover the reversal
Yep that's the error I have too, but i saw 3 transfer sinces the last cashout who made a total 160.08 โฌ, and asking transfer reversal "amount": "11925",
119.25 โฌ so should be enough
I can try to trigger another transfer reversal let me check if I have the same output
From what I can see, there are daily payouts on that account and those transfers happened across multiple days. So those funds have mostly been paid out
If you retrieve the balances for this account, you should be able to see the amount available for reversals in the available balance that returns https://docs.stripe.com/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.
Yeah there is paid out, and this transfer have already been paid out, but I have other transfer too who alimented the "balance", and the balance should be enough (from my pov in the dashbord at least)
To be clear, pending balance is not the same as available balance. Pending means the funds are still on the way to you, so they haven't actually been transferred to the connected account.
ok i called the balance for the connected account, you're right it's pending (I know pending are not available)
Stripe\Balance Object
(
[object] => balance
[available] => Array
(
[0] => Stripe\StripeObject Object
(
[amount] => 0
[currency] => eur
[source_types] => Stripe\StripeObject Object
(
[card] => 0
)
)
)
[livemode] => 1
[pending] => Array
(
[0] => Stripe\StripeObject Object
(
[amount] => 16008
[currency] => eur
[source_types] => Stripe\StripeObject Object
(
[card] => 16008
)
)
)
)
But I don't get it why it's pending ๐
, the 3 transfer made for this money are from the main account to this connected account.
10 mai, 10mai and 13 mai
Transfer from main account to connected are not available ? (dunno if you can help me about that or ask the classic support ๐คทโโ๏ธ )
Hooo I see 7 days delay of transfer on a table in the dashboard (damned this UI put me a lot of trouble seeing what happened on connected account)
Where on the dashboard is that showing up? I thought that with destination charges, the funds get transferred and become available as soon as they land on your platform account. So my understanding would be that the funds from those payments were still in transit. Is this a specific payment method that takes 7 days?
on the dashboard/{{account}/balance/overview, all activity tabs I have this
No idea let me check maybe the first payment have delay too, i'm not the one implementing everything on the api and don't know if there is delay at the start
Ah gotcha, I think that that column lines up with what I was saying. Can you send me the text of those py_ IDs? I can double check and confirm
Yeah maybe there's delay at first but I'm not sure too lol ui too complicated ๐ Yeah I can send you id
That's the original customer payment to "main" account :
pi_3P7uANHOzIQ7YEGf0J9sAnZq
then transfer made by main account to connected one : tr_3P7uANHOzIQ7YEGf0BQATmj3
that's create a payment : py_1P7uAnHIW7oo2Jy9NrrYGPjZ
I think you have the hole process id, if that's can help
Yep, it looks like that payment happened on 4/21 and the funds became available on 4/28. So it looks like a 7 day settlement timing on these payments can definitely happen for you
For what it is worth, you can check the estimated settlement time for the funds by checking available_on on the balance transaction object that is on the Charge object that your PaymentIntent created for the successful payment. It is on the same object that has the Stripe fee so you can access it a similar way https://docs.stripe.com/expand/use-cases#stripe-fee-for-payment
Gotcha, well there is cashout in the process too, so i'm gonna work on checking the available found anyway before launching a refund. Thanks a lot to help me understand what happened and hanzo too !