#befa_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/1476155988586266675
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- befa_api, 1 day ago, 24 messages
๐ Hi there! Let me take a look
Hello Arran. Thank you for your help
Do you have an event ID that's not being delivered?
Sure, this is the ID of a connected account creation req_f3Lnu3uhVGCsSc which didn't triggered any event sent
That's a GET request to retrieve an account; it would not create an event
Soory wrong line : here it is req_9ZW1qXkwBpoZvP
OK, so you'd be expecting an account.updated event I guess?
Indeed
I see that your platform (acct_1RdAYjGLAE82xUHR) does not have any Connect webhooks configured: https://docs.stripe.com/connect/webhooks
But there are some, and I received webhooks until yesterday 12:03
Can you share an event ID (evt_โฆ) that you did receive?
Here is a screenshit of my account with webhooks that seems active
Here it is : evt_1T4JORGLAE82xUHRr2uLFffZ
Or another one related t a PaymentIntent succeeded : evt_3T4IivGLAE82xUHR1tBKcPKR
Those two are related to your platform, rather than a connected account
Sorry I don't get it
Can you open the the first webhook in your screenshot, and share the ID (we_โฆ)?
I think the v2 isn't used. But here is the id of the webhook named Account update endpoint : we_1T2YO8GLAE82xUHR7mvMD7Mz
Here is the ID og the first webhook (V2) : ed_61UBwP9OPuV2U6VrD16SmYW58cDPypHaW8mxYoShUUOm
For the request in question (req_9ZW1qXkwBpoZvP), this triggered an account.updated event (evt_1T4epk7tck4fMtlVMmZwqi6B), for which you need a Connect webhook configured. As arran mentioned, the other event IDs you listed happen directly on the plaform account, so these were successfully sent to the Account webhooks that you have set up. You can see more details about the different types of webhook here: https://docs.stripe.com/connect/webhooks
OK, but what about this webhook : ed_61UBwP9OPuV2U6VrD16SmYW58cDPypHaW8mxYoShUUOm Isn't it supposed to receive events for connected accounts ?
And on the sandbox connected accounts events where sent to this webhook we_1SryXeQG6G0kBU39GyZaJNQm which seems pretty similar to the one I created in production. Did I miss something ?
Looks like webhook is currently just listening for v2.core.account.updated events. I think you'll need to also add account.updated
The sandbox webhook does listen for this event, which would explain the difference
It doesn't let me listen for account.updated (checkbox disabled), could it be because the payload style is defined to light ?
Ah, yes, probably. You will need to create a new webhook endpoint, and it should let you select the event from the creation screen
OK, let me try. Thank you