Re-triggering a Webhook Notification

If you need to resend a webhook notification that was missed or requires reprocessing, you can use the following endpoint: POST /account/webhook/resend

This endpoint triggers the retransmission of a specific webhook notification based on the provided event ID.

How to Find Your Event ID

  1. Make a GET request to the /account/webhooks endpoint.
  2. This will return a list of webhook events.
  3. Locate the event you want to retrigger and copy its EventID.

Notes

  • Retriggering a webhook will resend the exact same data that was originally sent.
  • Please keep in mind that retriggering webhooks can cause duplicate events to be processed on your end. Ensure your systems are designed to handle potential duplicates appropriately.