POST requests with Content-Type: application/json, and a secret
manager to store the signing secret you’ll receive.
Each institution can have up to 10 active webhook endpoints. Hitting
the limit is rare — if it matters to you, let us know.
Open the Webhooks page
Sign in to business.quippy-lab.com, then
open Webhooks from the sidebar. Click + Add endpoint.
Admin portal — Webhooks list and ”+ Add endpoint” button.
Fill in the endpoint details
The Add webhook endpoint dialog has three fields.
Click Create endpoint.
| Field | What to enter |
|---|---|
| Endpoint URL | The HTTPS URL Quippy will POST to, e.g. https://your-app.com/hooks/quippy. Must start with https://. |
| Description (optional) | A human-readable label, e.g. Production CRM integration. Only you see this. |
| Events | Tick the event types you want delivered to this endpoint. At least one is required. |
The full list of event types, with sample payloads, is on the
Event catalog page.
Copy the signing secret — shown once
Immediately after creating the endpoint, Quippy shows the signing
secret — a string starting with
whsec_. It appears once.Copy the secret into your secret manager (AWS Secrets Manager, HashiCorp
Vault, Doppler, 1Password, etc.) before closing the dialog. Your
receiver will read it from there to verify signatures.If you lose the secret, you can rotate it on the endpoint’s detail page
— but any receiver using the old secret must be updated immediately or
deliveries will start failing signature checks.Send a test delivery
On the endpoint’s detail page, click Send test. Quippy dispatches a
synthetic
webhook.test event to your URL. You should see:- A
200 OKresponse from your endpoint (or whatever you returned) in the Deliveries log within a few seconds. X-Quippy-Event: webhook.teston the request your server receives.
Response requirements
Quippy treats a delivery as successful if your endpoint returns any2xx status within the dispatcher’s timeout. Anything else (4xx, 5xx,
timeout, connection refused) triggers the retry schedule — see
Retries and delivery.
What’s next
- Verify every delivery — Verify webhook signatures
- Know the payloads — Event catalog
- Understand retries — Retries and delivery