#juneid_connect-error

1 messages ¡ Page 1 of 1 (latest)

versed sphinxBOT
#

👋 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/1219705741322223758

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

novel prairieBOT
unborn geyser
#

Hello! Do you ahve more details on where you're seeing this error? Do you have a request ID I can take a look at?

tender arch
#

Where can i find the request ID? because in logs i can't see anything related to account.

unborn geyser
#

Mm let me try a different approach if you can't find the request

#

What code are you calling that's resuling in this error?

tender arch
#

public Stripe.Account UpdateCustomAccount(string stripeAccountId, AccountUpdateOptions options, SystemMessages msgs)
{
if (msgs.IsEmpty()) msgs = new SystemMessages();
Stripe.Account account = null;

        try
        {
            account = GetAccountService().Update(stripeAccountId, options);
        }
        catch (StripeException ex)
        {
            msgs.Add(ex.Message, MessageType.UserError, ex);
            msgs.Add("Error updating payment account", MessageType.UserError);
        }

        return account;
    }
#

account = GetAccountService().Update(stripeAccountId, options);

unborn geyser
#

And where are you getting the account ID from? Because right now it looks liek the account ID acct_1Jekex2E2B07Xpgz just doesn't exist at all (which is why you're getting the error)

tender arch
#

Do we take it as stripe connect account ID ?

unborn geyser
#

Yeah, it should be a connected account ID - but for this case I think the error is accurate (and the account doesn't exist)

tender arch
#

Lml

versed sphinxBOT
#

juneid_connect-error

tender arch
#

Thanks for the information.

#

I have figured out the issue.