#standup75 - payouts testing
1 messages · Page 1 of 1 (latest)
We don't really have context about funds availability unfortunately.
I wish I could help, but this chat is focused on developers and API integration questions. Our support team will be able to assist you better than I can: https://support.stripe.com/contact
Where are you seeing the balance?
when calling the corresponding api endpoint https://stripe.com/docs/api/balance/balance_retrieve?lang=node
Do you have a Request ID for the API call you made?
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
req_HZOWupvCfRAdzt
I believe that's because this account is set up to have automatic Payouts, so the balance is $0 due to the fact that it's wrapped up in a future Payout: https://dashboard.stripe.com/test/balance/overview
Additionally, the first payout on an account has a 7-day delay: https://support.stripe.com/questions/common-questions-about-payout-schedules#:~:text=The first payout for every,inherent in providing credit services.
Again, these are not developer questions, but I'm happy to take follow-up questions if they're related to coding or building an API integration
I am intending to create the accounts with manual payout, here is the code, Is that the wrong way to specify this? stripe.accounts.create({ country: 'US', type: 'express', email, capabilities: { transfers: { requested: true }, }, business_profile, default_currency: 'USD', settings: { payouts: { schedule: { interval: 'manual' } } }, })
That should set it to manual. Do you have the Request ID fir the request that created the account?
ok, I need to retry with a new account, I probably created this one before that ^^ change, I will try again.
In test mode, for testing our integration how do I avoid to make a test that needs to wait for 2 days 😬
Apologies for the wait. The server is getting busy. Circling back now
I think you need to test Payouts using our test account numbers here: https://stripe.com/docs/connect/testing#payouts
Ok, I need to try something and will report back, it was all super helpful anyway, thank you