#leftyfl1p_api

1 messages · Page 1 of 1 (latest)

willow cargoBOT
#

👋 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.

pallid summit
#

Hi there

fair magnet
fair magnet
pallid summit
#

Let's see, looking at Account Sessions

fair magnet
#

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"

pallid summit
#

Still looking/testing with my own embedded component

fair magnet
#

ok

pallid summit
#

Okay, I can't get the tax details to show up either but I'm not sure if this is a test mode quirk

fair magnet
#

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.

pallid summit
#

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

fair magnet
#

I will be away for an hour, sorry.

pallid summit
#

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

fair magnet
#

Please don’t continue it on the old thread, they won’t help me

pallid summit
#

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

willow cargoBOT