#ANNA SUN-payout-webhook
1 messages · Page 1 of 1 (latest)
Hey! Can you explain your use case a little more? Those events are generally unassociated
So for example when a Payout is created in test mode, i saw it fires 3 webhooks, when I looked at the types, it was payout.created, the 2nd one was payout.updated and the third was payout.paid
I was wondering if these webhook payloads are always in the same order
Like there will never be a case where a payload with the type payout.paid is sent before payout.created
Got it. We can't guarantee event ordering for instances like this: https://stripe.com/docs/webhooks/best-practices#event-ordering
However it would be rare (impossible?) for a payout to be paid immediately in live mode (which is what happens in test)
Gotcha. Also what webhook event would be fired if you reverse a payout? Is it payout.cancelled?
It's essentially a new Payout object: https://stripe.com/docs/connect/payout-reversals#webhooks
Ah gotcha. Thanks!
Np!