#bohdan.borkivskyi
1 messages ยท Page 1 of 1 (latest)
Hello ๐
I don't think there's a way to disable events for specific accounts really but you can identify what account the events were generated for by looking at the account property on the event
https://stripe.com/docs/api/events/object#event_object-account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Then you can decide to run/not run any specific methods for those accounts
Yes, I know that. In my case I know that I don't need to process events from specific accounts and for me it'd be better to disable them on webhook level than starting unnecessary processing at all. But I guess that's the only way to do it. Thank you
yeah unfortunately, that's the only way at the moment!