#mindsetinmeta
1 messages · Page 1 of 1 (latest)
This is outlined here: https://stripe.com/docs/expand/use-cases#charges-in-payout
What specifically do you mean by test?
I'm trying the API in postman
with a connected account
I'm wondering if there are payouts data in testing mode
as I'm getting empty results from Payout API
{
"object": "list",
"data": [],
"has_more": false,
"url": "/v1/payouts"
}
Can you share the ID (req_xxx) of the API request? https://support.stripe.com/questions/finding-the-id-for-an-api-request
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.
req_QHGTwktK1iGMt3
Are you sure acct_1LvGQwRWW5n8dD33 has any Payouts to list?
It's a connected account created and we have created multiple payments to this account in testing mode.
Is there anything else need to be done?
payments yes, but it doesn't have any payouts, so the API response is correct
doesn't look like that Express account has any bank account added, so naturally we can't create/send any payouts
will double check. thanks.
I just tried with another connected account with payouts data. Now I can get payouts data under that account. However, when retrieving the payments associated with the payout, I'm getting the following error:
{
"error": {
"message": "Balance transaction history can only be filtered on automatic transfers, not manual.",
"param": "payout",
"request_log_url": "https://dashboard.stripe.com/acct_1LtlyORnozBSmLVi/test/logs/req_BpUk4W03FeLZgW?t=1670844892",
"type": "invalid_request_error"
}
}
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Are automatic payout running under testing mode? I think I have to simulate payout with CLI, right? which means, it has to be manual mode.
automatic payouts happen in test mode just fine yes, once a day we generate a test mode payout at ~1am that pays out available transactions, the same way it works in live mode
for those payouts, once they exist you can list the BalanceTransactions that are part of them . For manually triggered payouts you can't list BTs since the concept doesn't make sense when it's just a specific lump sum being paid out
right
so generally I recommend creating an account with a bank account, doing test transactions over time as you build out your integration, and when you come back in a day or two to start looking at payouts, there will be some automatic ones already created. Not ideal but it is what it is