#kafka_riskcontrols-preview
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/1494438499808579595
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
I see this
{
"id": "{{CONNECTED_ACCOUNT_ID}}"
,
...
"charges_enabled": false,
"payouts_enabled": false,
"requirements": {
"disabled_reason": "platform_paused"
}
}
on this page
https://docs.stripe.com/connect/pausing-payments-or-payouts-on-connected-accounts
And I tried to set that payouts_enabled field but as far as I can tell is programmatic?
I'm also using the Go SDK
kafka_riskcontrols-preview
There's a feature in the API under risk_controls that lets you pause Payouts but it's in Private Preview and not in our public docs. So you'd need to ask for access to our support team: https://support.stripe.com/contact
Thank you!
Are you logged into your Stripe account when visiting those docs?
You seem to have access to the feature already
cc @tawny tiger
I am, uh, but I use an LLM a lot for looking through your docs so it's probably not seeing it
Is it this?
params := &stripe.AccountParams{}
params.AddExtra("risk_controls[payouts][pause_requested]", false)
params.AddExtra("risk_controls[charges][pause_requested]", false)
result, err := account.Update
("{{CONNECTED_ACCOUNT_ID}}"
, params)
yes
Sorry we don't know much about gated/secret features here and I thought you wanted access
Cool, looks easy then. Apologies for not looking harder, thanks for the assist.
no worries at all. LLMs are definitely not good today at knowing about your secret features