#toe
1 messages ยท Page 1 of 1 (latest)
๐ Hi there, Happy to help!
You can use the Payout API:
https://stripe.com/docs/api/payouts/create
By setting the Stripe account header auth:
you can find here a concrete example:
https://stripe.com/docs/connect/manual-payouts#regular-payouts
Thank you, but how would I know how much are in the specific connected account which needs to be payed out?
You need to follow the transfer that you send to the connected account, or by visiting the connected account dashboard
You can view it in the dashboard:
https://dashboard.stripe.com/{CONNECT_ACCOUNT_ID}/test/balance/overview
Thanks, I am also using the Stripe Cli to test webhooks but I keep getting this error "This application does not have the required permissions for the parameter" when making updates on the connect accounts
Can you share the ID (req_xxx) of the failing API request?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
The requests are not showing in the logs even
When you did the login using stripe cli, did you accomplish the authenticate?
https://stripe.com/docs/stripe-cli#login-account
Could you please share the stripe cli command that you are trying to do? and what are you expecting by doing it ?
stripe accounts update acct_1Ls1J5QUCHt6hGVf --default-currency=gbp
I want to change the connected user default currency and get an object back
In the Stripe dashboard it says it is listening for webhooks but no logs are being recorded
The likely issue is that acct_1Ls1J5QUCHt6hGVf is an Express account, correct?
default_currency can only be set/updated on custom accounts: https://stripe.com/docs/api/accounts/update#update_account-default_currency
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thanks, how do I update nested settings via the CLI?
I tried
-d business_profile[support_address]=Test
is not going through
Should work? https://stripe.com/docs/cli/resources#resources-data
Ah, support_address expects a hash/object: https://stripe.com/docs/api/accounts/update#update_account-business_profile-support_address
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thanks that helped.
np!