#franc0rossi_best-practices
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/1428792826564444191
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- franc0rossi_best-practices, 1 day ago, 10 messages
What kind of account are they setup with? Standard, Express, Customer?
Connected account
I understand, but there are several kinds of Connected accounts that have varying amounts of control over their settings.
If you have an example account id I can look for you?
one sec
this one? https://dashboard.stripe.com/acct_1BsauPJAejluIz2U/connect/view-as/acct_1O4u7CQxLhnTIE6v/dashboard
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
this is the manual payout https://dashboard.stripe.com/acct_1O4u7CQxLhnTIE6v/payouts/po_1QJ05dQxLhnTIE6viCKVtJ6s
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
looks like this is a Custom Connect account.
okey
You should be able to update the interval with the API https://docs.stripe.com/api/accounts/update?api-version=2025-09-30.preview#update_account-settings-payouts-schedule-interval to something other than manual
how can I see if its set to manual
is there an api i can hit to get the payout schedule info?
๐ Taking over this thread, catching up now
You can use Accounts Retrieval API https://docs.stripe.com/api/accounts/retrieve to retrieve the connected account details. The information of payout setting will be available in settings.payouts.schedule hash: https://docs.stripe.com/api/accounts/object#account_object-settings-payouts-schedule
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
thank you
No problem! Happy to help ๐
I do not see the payout schedule under the settings
Sorry I saw it
"payouts": {
"debit_negative_balances": false,
"schedule": {
"delay_days": 2,
"interval": "daily"
},
it is not se to manual
You can update the payout schedule to manual on settings.payouts.schedule.interval parameter using Update Accounts API: https://docs.stripe.com/api/accounts/update#update_account-settings-payouts-schedule-interval
More details can be found in https://docs.stripe.com/connect/manage-payout-schedule#interval-property