#leftyfl1p_api
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/1313623465663664208
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there
Here is what the component shows. I am expecting to see some sort of toggle to allow the connected account to opt into paperless delivery as noted on here (https://docs.stripe.com/connect/deliver-tax-forms#file-deliver-embedded)
You should also implement the Account management component to collect paperless delivery consent,
Hello
Let's see, looking at Account Sessions
Our frontend is using @stripe/connect-js 3.3.17 and @stripe/react-connect-js 3.3.19
import { loadConnectAndInitialize } from '@stripe/connect-js';
import {
ConnectAccountManagement,
ConnectComponentsProvider
} from '@stripe/react-connect-js';
import { useState } from 'react';
const Test = () => {
const [stripeConnectInstance] = useState(() => {
const fetchClientSecret = async () => {
return 'xxx';
};
return loadConnectAndInitialize({
publishableKey: 'xxx',
fetchClientSecret: fetchClientSecret
});
});
return (
<ConnectComponentsProvider connectInstance={stripeConnectInstance}>
<ConnectAccountManagement />
</ConnectComponentsProvider>
);
};
export default Test;
Heres an example component
Example cli request to reproduce the client secret stripe account_sessions create --account="acct_1QKuwlQKhkmKvYpJ" -d "components[account_management][enabled]=true" -d "components[account_management][features][external_account_collection]=false"
Still looking/testing with my own embedded component
ok
Okay, I can't get the tax details to show up either but I'm not sure if this is a test mode quirk
I take it you've configured component links? https://docs.stripe.com/connect/express-dashboard-taxes#which-accounts-get-access-to-e-delivery
I didn't see that. I enabled it (i think) here https://dashboard.stripe.com/settings/connect/site-links by checking yes and adding a link but still no dice
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
This page is really confusing, sometimes the yes selection gets unchecked and the link appears to share between prod and test despite loading in test mode dashboard too
Also the page you linked says only if you enabled delivery through an interface built by Stripe but https://dashboard.stripe.com/settings/connect/tax-reporting/1099-forms refuses to load in the test mode dashboard. for prod this was also not enabled, so I checked it, but the test component still doesn't show anything different.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Right, I think the issue here is the "Tax reporting" section in the Connect settings is only visible in live mode
I don't see a way to use the API to view or update a connected account's tax reporting choice either
Getting some help from some teammates
I will be away for an hour, sorry.
I see, okay. I'll try to get an answer in the next few minutes but will close this thread in ~25 mins. I can transition over to email; I'll look for your existing support ticket
Please don’t continue it on the old thread, they won’t help me
I found the thread. I'll take it and continue to work with you there. I'm getting some async updates from my team on this but it sounds like test mode settings for tax reporting won't be visible until you first onboard to tax reporting in live mode