#bogdan_connect-payout-timeline
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/1216780356930502778
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐
When you refer to the "initial 7 week time" what specifically are you referring to? Does this have to do with payout speeds?
Sorry. 7 days time
Okay, what specifically are you asking about?
What is this in reference to?
To answer your question directly, no we don't expose this via the API and you would need to track it yourself
The form made me add a reference is the reference to the first payment on my platform. But since I'm building a marketplace I need to provide clear feadback to my connected accounts.
How can I check via sdk that a specific connected account has passed the initlal 7 to 14 business days for its first payout?
OK but how can I track myself this?
7 to 14 business days is up in the air.
You can periodically check the Account object via the SDK to see if the payouts_enabled field is set to true or not
https://docs.stripe.com/api/accounts/object#account_object-payouts_enabled
In addition to the number of days since the first payment, you would also want to check the requirements property to make sure they have met all the requirements
https://docs.stripe.com/api/accounts/object#account_object-requirements
Thank you.
I have another question. Can I post it here or should I open another form ?
No you can post here if you would like
How can I set via java skd the payout to manual mode for connected accounts? Can I do this before payouts_enabled = ture ?
We have an entire doc page on this subject with multiple code examples. You can find it here: https://docs.stripe.com/connect/manual-payouts
thank you
The doc will include multiple important details so I recommend you review the text carefully
will do
The documentation only states this.
If you set the value of schedule.interval to manual, This is the part that intrests me. How do I do this with javaskd?
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.
The examples are in the doc, what part of that is not clear?
I found it. The update documenation is on diferent page.
https://docs.stripe.com/api/accounts/update
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. This is all for now. I need to try this first.
Well if you keep scrolling down in the API reference, all our APIs follow the same pattern. First we show the object, the the various methods (Create, Update, etc.)
So anything you find there will have the same general pattern
You can use that for future reference
wonderful