Webhooks
Test webhook
Send a test payload to verify a webhook endpoint is reachable and responding
POST
Test webhook
Documentation Index
Fetch the complete documentation index at: https://docs.xquik.com/llms.txt
Use this file to discover all available pages before exploring further.
Free - does not consume credits
accepted,
status_code, and error with the webhook ID instead of printing the full
test response.
Path parameters
The webhook ID to test.
Headers
Your API key. This endpoint also accepts session cookie authentication.
What happens
Xquik sends awebhook.test event to your endpoint, HMAC-signed with the webhook’s secret:
Payload delivered to your endpoint
X-Xquik-Signature, X-Xquik-Timestamp, and
X-Xquik-Nonce headers. Verify the signature against the raw request body
before parsing JSON, reject stale timestamps, and de-dupe recent nonces exactly
as you do for production monitor deliveries.
The webhook must be active. If isActive is false, Xquik returns
webhook_inactive and sends no test request. Reactivate with
Update Webhook, then test again before sending
production monitor events to that receiver.
The test endpoint does not return or rotate the signing secret. Keep using the
secret returned by Create Webhook for
signature verification, and keep raw request bodies, raw signatures, and full
headers out of deployment logs.
webhook.test payloads include eventType, data, and timestamp. They do
not include deliveryId or streamEventId, so use them for reachability and
signature checks rather than receiver idempotency checks.
Response
- 200 OK (success)
- 200 OK (delivery failed)
- 400 Invalid Request
- 401 Unauthenticated
- 404 Not Found
- 429 Rate Limited
Test result handoff
Use this endpoint before routing production monitor events to a new receiver or after changing webhook code, secrets, firewall rules, or queue routing.Receiver accepted
Treat
success: true and a 2xx statusCode as proof that the receiver
accepted the signed webhook.test request.Receiver rejected
Treat
success: false with a non-2xx statusCode as a receiver error.
Fix the endpoint before waiting for the next production monitor event.Endpoint unreachable
Treat
statusCode: 0 as a network or reachability failure. Check DNS,
TLS, firewall rules, and the public HTTPS URL.Error string
Store
error with your deployment logs so support, queue, or incident
workers can see the latest test failure reason.Inactive webhook
webhook_inactive means no test was sent. Reactivate the webhook with
Update Webhook, then test again.Signature path
Validate
X-Xquik-Signature, X-Xquik-Timestamp, and
X-Xquik-Nonce on the raw request body before accepting test or production
events.Test payload
webhook.test payloads include eventType, data, and timestamp.
They do not include deliveryId or streamEventId.Production triage
After the receiver accepts this signed test, use
List Deliveries to debug real monitor
events. Delivery rows contain
id, streamEventId, status, attempts,
lastStatusCode, lastError, createdAt, and deliveredAt.Event join
For failed or exhausted production deliveries, use delivery
streamEventId
as the {id} for Get Event. Store the event
monitorId, monitorType, type, occurredAt, and data with the
receiver incident.This endpoint supports dual authentication: API key (
x-api-key header) or session cookie from the dashboard.Related: List Webhooks · List Deliveries · Get Event · Webhook VerificationLast modified on May 23, 2026
Test webhook