#testDeveloper
1 messages · Page 1 of 1 (latest)
Hi there!
That's expected, since your platform account has a single webhook endpoint and it's only listening to events happening on the connected accounts (and not on the platform account).
So you should create a new webhook endpoint that listen to transfer.created events.
You can learn more about the different types of webhook endpoint here: https://stripe.com/docs/connect/webhooks#connect-webhooks
ok so if the web hook is for connected accounts it won't be triggering event for stripe dashboard? is it ?
A connect webhook endpoint will only listen to events happening on the connected accounts.
The event you shared (transfer.created), happened on your platform account, so you need an account webhook endpoint (not a connect webhook endpoint)
ok and if i try to trigger using the stripe shell
payout.created then also the webhook endpoint in the app is not listening
Can you send me the ID of this event?
Also what endpoint isn't receiving it? A CLI endpoint or one on your account?
the trigger from CLI for this event payout.created is not receiving in the webhook
evt_1MJdqhGAMQUY18UnBvCWu1gU
Which webhook is not receiving the event?
Are you talking about this connect endpoint? https://dashboard.stripe.com/webhooks/we_1MJT4XGAMQUY18UnLd0VWuwJ
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
It would be expected to not receive the event on that endpoint. That payout is happening directly on your account, that webhook will only receive events for accounts that are connected to your account
So you need to either create that event for a connected account or create a webhook endpoint for your platform account
ok