#riptired_api
1 messages ยท Page 1 of 1 (latest)
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.
- riptired_api, 4 days ago, 24 messages
- riptired_api, 6 days ago, 5 messages
๐ 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/1270543413346963467
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
The specific error is this: does not have the required permissions for this endpoint on account ''. Having the 'rak_accounts_kyc_basic_read', 'rak_connected_account_read' permissions would allow this request to continue.
hello! can you share the request id [0] where you are seeing the error? it'd look like req_xxx
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Its a perm error so I don't see a request id?
hrm, what endpoint were you trying to use and can you share the specific connected account id you were trying this on?
just stripe.Account.list()
gimme a while to test this out too
I am getting this error which is more verbose as well:
PermissionError: Only Stripe Connect platforms can work with other accounts. If you specified a client_id parameter, make sure it's correct. If you need to setup a Stripe Connect platform, you can do so at https://dashboard.stripe.com/account/applications/settings.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
My account is a connect account though as I have clients that have connected their account to mine(?)
Can you share your account id where you created this restricted key in? You can find your account id by logging in to https://dashboard.stripe.com/settings/account. It'll look like acct_123
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
acct_1PW3cpDkBFIupQ29
hrm, using a restricted key with Connect write permissions works fine for me. If you try the below curl command with your restricted key, you get the same error?
curl -G https://api.stripe.com/v1/accounts \
-u "rk_test_...:" \
-d limit=3
Let me check something
Okay looks like it was a mixup in my parameter store
the account ID in the error was for a different account
yay! it's good that it was an easy fix ๐
Thanks lol, 1 more question though, is setting a monthly payout schedule for a connected account the same thing as setting it for automatic payout?
yep, monthly payout schedules are still automatic payout. As long as it's a payout is not manually triggered (created) by the API or via the Dashboard, it's considered as automatic payout
okay follow up to that, regarding stripe connect specifically
So I can create products in my account (I am considering my account as a "Platform" according to Stripe definitions)
My account specifically vs creating the product within the connected account
then if I way to payout via SC&T to connected accounts all I need to do is update the connected account for auto payout via a schedule and then create transfers with whatever split i need correct?
yes that's correct
Okay great thanks