#Florian

1 messages ยท Page 1 of 1 (latest)

solemn zephyrBOT
noble obsidian
#

Hi ๐Ÿ‘‹ no, generated Events will be sent to any webhook endpoint in the corresponding mode (test vs live) that is listening for the event type matching the generated Events.

If you would like to filter out some events, then that will need to be handled by the event handling code running on your endpoint.

You can leverage metadata to effectively tag the objects that you create, you could then use this data to decide whether a specific endpoint should action on or ignore an Event that it receives.
https://stripe.com/docs/api/metadata

foggy mist
#

and to ignore, I can return which API code so that it is not considered as an error on the Stripe side?

noble obsidian
#

You would return a status in the 2XX range, anything outside of that range will be interpreted as your endpoint not being able to successfully receive the event and we will queue it to be resent.

foggy mist
#

Thanks

noble obsidian
#

Any time!