Webhooks
POST/v1/webhooks/endpoints/{id}/test
Send a sample delivery to prove the path
Runs through the exact same path as a real event — TLS, signature, your handler — and shows up in the delivery history with the response you gave. A test that takes a shortcut only proves the shortcut. Do this before anything real depends on the endpoint.
- Auth
- API key
- Scope
- webhooks:manage
- Rate limit
- DEFAULT
- Search quota
- Free
- Idempotency
- Idempotency-Key
Path parameters
Request headers
Responses
200 · WebhookTestResultDto
Errors
Every one of these carries the same envelope. What each error.type means, and whether a retry can succeed, is on the error index — once, for all operations.
Response headers
Set on every response of this operation, successful or not.
Example
curl -sS -X POST "$VACABEE_API_URL/v1/webhooks/endpoints/<id>/test" \
-H "Authorization: Bearer $VACABEE_API_KEY" \
-H "Idempotency-Key: $(uuidgen)"Set VACABEE_API_URL to https://api.vacabee.com with a live key, or to https://sandbox-api.vacabee.com with a vcb_test_ key. Binding a host to one kind of key is planned and is not enforced by the host yet, so nothing stops a key from being answered at the wrong base URL — assert the prefix against your configured URL yourself. What the sandbox answers
TypeScript SDK
await vacabee.webhooks.test(…);The typed method sends the right headers, derives the idempotency key where one is required, and returns the response type generated from this document. Installing and using the SDK

