event_category
field that indicates the type of event. These categories are
purposefully simple, only indicating if an object is created
or updated
. This requires
fetching the updated object from the object’s API endpoint to curb issues that may
arise from concurrent object notifications.
Webhook Delivery
Webhook delivery is considered successful on a2xx
or 4xx
response.
5xx
responses are retried with exponential backoff up to 8 times.
Your webhook handler should return a successful response as soon as possible,
ideally immediately passing the event to an event queue or concurrent worker.