Redeliver a webhook delivery
Immediately replays a specific webhook delivery using the original payload.
Use this after fixing your endpoint to replay a failed or retrying delivery. The delivery row is updated with the new attempt result.
For production events, a failed manual redelivery re-enters the automatic retry
schedule when attempts remain. webhook.test is always manual-only: a failed
redelivery remains failed with nextRetryAt: null.
How to get deliveryId:
- Call
GET /platform/v1/organization/webhook-deliveries?status=failed - Copy the
idfield from the delivery you want to replay - Use that value as
{deliveryId}in this route
Example:
POST /platform/v1/organization/webhook-deliveries/1f7f2e8a-2c4a-4a60-9c5b-8a1111111111/redeliver
X-API-Key: hp_live_...
No request body is required. Hyperprop signs the replayed webhook using the same webhook signing secret and sends it to the webhook’s configured URL.
Authentication: Accepts either Authorization: Bearer <jwt> (dashboard) or X-API-Key: hp_live_... (programmatic).
Authorizations
JWT Bearer token for user session auth. Format: "Bearer {token}". Used by User and Organization endpoints.
Path Parameters
Webhook delivery ID
Related topics
Inspect one event and all its webhook deliveriesInspect a webhook event and all delivery attemptsView webhook delivery historyGet daily webhook delivery activityGet webhook endpoint delivery and latency metrics