Replaying failed webhook events

Use the replayFailedWebhookEvents mutation to replay failed webhook events.
mutation {
  replayFailedWebhookEvents(webhookId:your-webhook-id)
}
 
Notes:
  • Your webhook endpoint must return a 200 status code for the event to register as being successfully received. See this example (line 24).
  • Taddy API keeps track of all webhook events that failed to successfully be received by your webhook endpoint and stores them for 14 days.
  • When you call replayFailedWebhookEvents, failed events are queued to replay to your endpoint immediately but may take a few moments for the first event to arrive (depending on the volume of failed events and how busy the queue is).
  • When you are replaying an event, if it returns a 200 status code, we remove the record from our database and it won't be included in future replays.
  • When you are replaying an event, if it fails again, the failed record remains and will be included in future replay attempts.
 
Back to:
🔔Webhooks