#dannnnnnnnnnnnnnnnnnnnnn_unexpected
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/1422220159292145794
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
For more reference:
Platform account ID: acct_1QCNAxLzjB3g7c9J
Example request ID: req_ozWkWAdtSyqU1v
The connect account we're trying to create the payout for: acct_1QCOOgQ1n6gB3Z18
Interestingly the UI shows 264.17 which is why we're getting that error I imagine, but querying via the API returns:
<Balance({
'object': 'balance',
'available': [
<Available({
'amount': 29298,
'currency': 'usd',
'source_types': <SourceTypes({
'card': 29298,
})>,
})>,
],
'instant_available': [
<InstantAvailable({
'amount': 26417,
'currency': 'usd',
'source_types': <SourceTypes({
'card': 26417,
})>,
})>,
],
'livemode': False,
'pending': [
<Pending({
'amount': -2881,
'currency': 'usd',
'source_types': <SourceTypes({
'card': -2881,
})>,
})>,
],
'refund_and_dispute_prefunding': <RefundAndDisputePrefunding({
'available': [
<Available({
'amount': 0,
'currency': 'usd',
})>,
],
'pending': [
<Pending({
'amount': 0,
'currency': 'usd',
})>,
],
})>,
})> (Balance)
Which via the UI I can't see any pending transfers but can through the endpoint
Hi, it could be possible that you have some pending refunds that have not impacted your balance just yet.
Are you able to create the payout for that amount shows, 26417?
I imagine that will work yeah, but I don't want to fix it just this once by doing that amount if that makes sense. Can you think of any reason why if I view the accounts payouts and filter for is pending or in transit nothing appears? but via the API endpoint there apparently is some pending transfer?
For reference the URL im looking at https://dashboard.stripe.com/acct_1QCNAxLzjB3g7c9J/connect/view-as/acct_1QCOOgQ1n6gB3Z18/test/payouts?status=pending
That is not a temporary fix, as you can see there are pending amounts that impact the balance of your account
If you have any specific questions about account balances you can contact support. Our support team will be able to better assist: https://support.stripe.com/contact
yeah sorry I get that, but the root cause of the issue is that there is a pending transfer that doesn't exist in the Stripe dashboard no?
so when I query for payouts for that account there aren't any that are pending or in transit
which doesn't line up with the balance endpoint
I can't speak to how the Dashbaord works sorry
but that page must show the payout objects related to that account?
We can help with API related questions on this channel.
ok it is an API question I'll rephrase
If I query the payouts endpoint for the connected account acct_1QCOOgQ1n6gB3Z18, we a get a list of payouts as we expect related to that account. Normally if there is a payout that is in transit or pending these payouts still show up in the response to our call. However, currently when we query the balances endpoint for that connected account, it shows that there is a pending payout amount (see the above response from the call). Has anything changed to these endpoints or the way these Payout objects are created on your end or is there something obvious I'm missing here? As far as I'm aware there's normally a payout object for that pending amount?
Nothing has changes, that pending balance is not related to another payouts, https://docs.stripe.com/api/balance/balance_object?api-version=2025-05-28.basil#balance_object-pending
Ok, defo a misunderstanding going on on my part then. Will have a depper look into it, thanks for steering me in the right direction!