Webhooks
Resume webhook
Test and resume a webhook endpoint after delivery failures
POST
Resume webhook
Free - does not consume credits
delivery_status,
consecutive_failures, failure_hard_cap, status_code, and the delivery-log
endpoint beside the webhook ID.
Path parameters
The webhook ID to test and resume.
Headers
Your API key. This endpoint also accepts session cookie authentication.
What happens
Xquik sends a signedwebhook.test request to the webhook URL. If your receiver
returns a 2xx status, Xquik reactivates the webhook, resets consecutiveFailures to 0, and returns the updated webhook object.
If the signed test fails, Xquik returns 400 with success: false,
statusCode, and error. The webhook is not reactivated.
This endpoint does not rotate or return the signing secret. Keep using the
one-time secret from Create Webhook.
Response
- 200 OK
- 400 Test Failed
- 400 Invalid Request
- 401 Unauthenticated
- 404 Not Found
- 429 Rate Limited
Recovery handoff
Use this endpoint after fixing a receiver that returned repeated non-2xx
responses, became unreachable, or reached deliveryStatus: "needs_attention".
Needs Attention
deliveryStatus: "needs_attention" means the receiver has reached the
failure cap. Fix the receiver before resuming.Signed Test Gate
Resume only succeeds after a signed
webhook.test request receives a 2xx
response from your receiver.Failure Counter
Store
consecutiveFailures and failureHardCap for alerting and recovery
dashboards.No Secret Rotation
Resume does not return or rotate
secret. Keep verifying delivery
signatures with the secret returned at creation time.Delivery Log
After resuming, check
List Deliveries for recent
status,
attempts, lastStatusCode, and lastError rows.Event Replay
Use delivery
streamEventId with Get Event or
event list pages to backfill missed downstream work.This endpoint supports dual authentication: API key (
x-api-key header) or session cookie from the dashboard.Related: List Webhooks · Update Webhook · Test Webhook · List Deliveries · Webhook VerificationLast modified on June 23, 2026
Resume webhook