#radekluner_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/1509164537448894558
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ Hi there! Let me take a look
If I understand correctly, this is a payout.created event on a connected account. You have an account webhook (/webhook) which is listening for various events, however your Connect webhook (/webhook/connect) is not listening for payout.created
I believe if you add payout.created to your Connect webhook, you would see the option to re-send that event
yes but we tested this in sandbox and this worked. We have payout events registered for webhook with Events from Your account. Is this wrong settings?
Events for connected accounts should go to the Connect webhook: https://docs.stripe.com/connect/webhooks?accounts-namespace=v1#connect-webhooks
Do you have an example where you received it on your account webhook?
oh sorry, you are absolutely right
a re-added payout events to connect webhook, but already sent payout.created will probably wont show up, right?
You should be able to re-send events, even after adding an event type to a webhook
But since this is a connected event, perhaps it's shown differently in the Dashboard
You can also use the Stripe CLI from the command line, or in Workbench: https://docs.stripe.com/cli/events/resend
In this case, I believe you'd need to run:
stripe events resend evt_1TbedI9oX2nXlluMnoCfxoPL --account=acct_1TAaIA9oX2nXlluM --webhook-endpoint=we_1Sq9M4G41MS5OFs7TosBXodG
ok thank you, will try this