#icurrytheteam
1 messages · Page 1 of 1 (latest)
Hi there, you can change the connected account's payout schedule interval to monthly https://stripe.com/docs/api/accounts/update?lang=java#update_account-settings-payouts-schedule-interval
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
However, there's no settings for payout threshold. You might need to implement it by yourself and create manual payouts instead of using auto payout.
would changing settings.payouts.schedule.interval to monthly force an autopay meaning I can't add a payout threshold?
The schedule.interval is for auto payout. As I explained earlier, there's no settings for payout threshold and you need to implement it by yourself.
Is there a way to check to a connect account's payout history for the month?
Yes, you can call the payout list API and filter the created dates (https://stripe.com/docs/api/payouts/list?lang=java#list_payouts-created)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ok, so I can create a range of dates using created.gt and created.lt?
-in a unix timestamp that is
Yes you are right.
Does stripe charge a fee for failed or canceled payouts on express accounts?
https://stripe.com/pricing you can refer to this page for more about pricing. I don't see a fee for failed or canceled payouts but you can always clarify with Stripe support at https://support.stripe.com/contact
View Stripe fees and pricing information. Explore pricing by product, by payment method including credit and debit cards, or design a custom pricing package.
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.
Ok, thanks so much.
I'll let you know if I have any other questions.
Oh actually, how would I use the payout api to get a connected account payout history if there is no field for account id?
You should specify a stripe_account in the request.
By specifying a stripe_account, you are telling Stripe that you want to make an API call on behalf of a connected account. You can refer to this doc to learn more about making API request for connected account (https://stripe.com/docs/connect/authentication)
Oh, right
sorry about that
Yes, I understand now. Nothing else on my part (for real this time)
No problem! Feel free to drop by when you need help.