Types of events
Configure your webhook to listen only for the events your application needs. Ignore other events to avoid unnecessary load on your server.Handle duplicate events
Fintoc might send the same event more than once. Make your webhook endpoint idempotent so repeated events do not trigger duplicate processing. Use the eventid as an idempotency key. Atomically apply the eventβs effects and record the event id, then discard any event with an id you have already recorded.