#riptired_api

1 messages ยท Page 1 of 1 (latest)

celest summitBOT
honest spindleBOT
#

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.

celest summitBOT
#

๐Ÿ‘‹ 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.

dire bear
#

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.

clear beacon
dire bear
#

Its a perm error so I don't see a request id?

clear beacon
#

hrm, what endpoint were you trying to use and can you share the specific connected account id you were trying this on?

dire bear
#

just stripe.Account.list()

clear beacon
#

gimme a while to test this out too

dire bear
#

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.

#

My account is a connect account though as I have clients that have connected their account to mine(?)

clear beacon
dire bear
#

acct_1PW3cpDkBFIupQ29

clear beacon
#

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
dire bear
#

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

clear beacon
#

yay! it's good that it was an easy fix ๐Ÿ˜„

dire bear
#

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?

clear beacon
#

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

dire bear
#

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?

clear beacon
#

yes that's correct

dire bear
#

Okay great thanks