Use this file to discover all available pages before exploring further.
This guide walks through the full webhook setup: creating an endpoint in the Paxos Labs Console, writing a minimal receiver, and verifying the connection with a test event.
Navigate to your organization in the Paxos Labs Console and select the Webhooks tab.
2
Add an endpoint
Click Add Endpoint. Enter your HTTPS URL, an optional display name, and select the event types you want to receive.
3
Save your signing secret
After creation, a signing secret starting with pxlwh_ is displayed once. Copy it immediately and store it in your secrets manager (e.g., AWS Secrets Manager, Vault, or .env for local development).
The signing secret is shown only at creation time. If you lose it, delete the endpoint and create a new one.
In the route for your registered HTTPS handler, verify each request (signature and timestamp) and return a 2xx-status response within 3 seconds. Slow or failed responses may trigger retries, resulting in your server receiving duplicate events (use the id field to process idempotently).
Back in the Paxos Labs Console, expand your endpoint row and click Send Test. Choose ping to fire a lightweight connectivity check.Your server should log output like:
Received ping — evt_test_a1b2c3d4-e5f6-7890-abcd-ef1234567890
If the delivery succeeds, the endpoint’s delivery history shows a Success badge with the HTTP status code. You’re ready to subscribe to real events.
Edit your endpoint to add event types for the ones you care about. When those events occur in your organization, your server will receive them automatically.