#juneid_connect-error
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/1219705741322223758
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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?
Where can i find the request ID? because in logs i can't see anything related to account.
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?
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);
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)
Do we take it as stripe connect account ID ?
Yeah, it should be a connected account ID - but for this case I think the error is accurate (and the account doesn't exist)
Lml
juneid_connect-error