v49

latestOpenAPI 3.1.0Proprietaryraw.githubusercontent.com2026-02-185890337.1 KB
Webhooks

Replay a webhook delivery

Re-send a webhook delivery to your endpoint.

Use cases:

  • Recover from transient failures after fixing your endpoint
  • Test endpoint changes with real historical data
  • Retry deliveries that failed due to downtime

How it works:

  1. Fetches the original payload from the delivery
  2. Generates a new timestamp and signature
  3. Sends to your webhook URL immediately
  4. Returns the result (does not queue for retry if it fails)

Note: The webhook must be enabled to replay deliveries.

post/tenants/{tenantId}/webhooks/{webhookId}/deliveries/{deliveryId}/replay

Response

Replay result

successtrue required

Example response

{
  "data": {
    "success": true,
    "originalDeliveryId": "whr_abc123def456",
    "newDeliveryId": "whr_new789xyz",
    "statusCode": 200,
    "duration": 156,
    "timestamp": "2024-01-15T14:30:00Z"
  },
  "meta": {
    "requestId": "req_V1StGXR8_Z5jdHi6"
  }
}