#oxmarco_webhooks
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/1240991280650129418
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi! hmm. Do you have some details like an account acct_xxx where this happened? or a failed API request/error?
yes let me take a look
essentially the error I get is that my stripe doesn't have enough balance to send payouts
that's pretty normal
now, when that error arises, connected accounts are invalidated automatically
not sure what 'invalidated' means so would love to see some examples!
I'm going to go out on a limb and suggest you should read the answer here: https://stackoverflow.com/questions/55686949/why-i-am-getting-insufficient-funds-when-trying-stripe-transfers-even-though-i/55687932#55687932
this is the account acct_1PBgY6P2JyKbwJiu
I generated an onboarding link, complete the process, but no webhook is sent to the backend
This is the onboarding link
to listen to webhooks I am using the local forwarder stripe listen --forward-to localhost:3000/webhook
what webhook exactly are you expecting?
that only listens to events on your account
Ideally account.updated
you need --forward-connect-to
but in practice no webhook is sent
testing it rn
still no webhook is sent to the backend
I believe the account has already been onboarded so subsequent onboardings don't generate any webhook call
which makes it very hard to track what the actual account status is
call the Account Retrieve API to get all the details.
I thought I could just keep a flag in my db
and update it listening to the account.updated webhook event
ok I will test and let you know