#Aaron8646-ConnectFund
1 messages ยท Page 1 of 1 (latest)
Hi, can you give an example Id of the paid Payout?
And how do you see status of associated transactions?
payout id: po_1KoHGyR6T2wB7V13Zlnse1c7
txn id: txn_1KoHGyR6T2wB7V13toqvtL8J
the payout object has a "balance_transaction" field
(this is test data)
Where are you seeing the status pending for that balance transaction? Via API?
yup
{
id: 'txn_1KoHGyR6T2wB7V13toqvtL8J',
object: 'balance_transaction',
amount: -14250,
available_on: 1649980800,
...
source: 'po_1KoHGyR6T2wB7V13Zlnse1c7',
status: 'pending',
type: 'payout'
}
but the payout says something else!
{
id: 'po_1KoHGyR6T2wB7V13Zlnse1c7',
object: 'payout',
amount: 14250,
arrival_date: 1649894400,
automatic: true,
balance_transaction: 'txn_1KoHGyR6T2wB7V13toqvtL8J',
...
** status: 'paid',**
type: 'bank_account'
}
Do you have a little bit older transaction? Like yesterday or earlier
not one that highlights the same difference, no
So this is a Payout in test mode, I think despite we marked it as "paid", the money never reach a real bank account, then the balance transaction here always has pending status
In Live mode, after your bank successfully received the amount, it should be marked as available
so in live mode, payouts and transaction statuses should be synced? or would you suggest using one over the other
Should sync. I would recommend relying on the Payout status over Balance Transaction
Oh sorry missed it. Paste me the connected account id please
acct_1Knbg1R6T2wB7V13
anything on this?
Sorry, was stretching out a bit, back into looking ๐โโ๏ธ
Hmm I dont' see any balance
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
You see -$6.79 here, correct? But that's the platform balance
From my view I don't see any balance transactions, I guess that's why it's showing 0 in Dashboard
dashboard says 0 for total balance and pending balance. api says 142.50 for available balance and -142.50 for pending
Can you share some screenshot on the API result?
{
object: 'balance',
available: [ { amount: 14250, currency: 'usd', source_types: [Object] } ],
instant_available: [ { amount: 0, currency: 'usd', source_types: [Object] } ],
livemode: false,
pending: [ { amount: -14250, currency: 'usd', source_types: [Object] } ]
}
from stripe.balance.retrieve()