Choose event types
Configure your endpoint to listen only to the events your application needs. Ignoring the rest avoids extra load on your server.Handle duplicate events
Fintoc can send the same event more than once, such as after a delivery retry. Make your endpoint idempotent so repeated events cause no duplicate work. Store each event’sid after processing the event. Discard events with an id you have already stored.
Recover missed events
Your endpoint can miss an event, such as when your server is down or your handler fails after Fintoc records the delivery. List events returns the events Fintoc generated for your organization, so you can reprocess them without waiting for a redelivery. Filter bytype, by resource_id, or by the since and until time range to find the events you missed. Each event carries in data the same payload Fintoc sent to your endpoint. To inspect a single event, get the event with the id you received.