Developer Tools
Custom Webhooks Routing Developer Guide
Dispatch JSON payloads to custom server endpoints on payment, stock, and check-in events.
Payload structureJSON Schema
Security standardsHMAC SHA256 signature
Retry rules5 retries with backoff
Setup Instructions
1
Navigate to Workspace Settings > Developers > Webhooks.
2
Add target endpoint URL.
3
Select event scopes and generate signing secrets.
4
Verify connection using test payloads.
API SnippetNodeJS / cURL
// Webhook verification endpoint
const crypto = require('crypto');
function verifySignature(payload, signature, secret) {
const hmac = crypto.createHmac('sha256', secret);
const digest = hmac.update(payload).digest('hex');
return signature === digest;
}Event-Driven Developer Integrations
Build custom logic. Webhook triggers alert external servers of catalog updates, client registrations, and checkouts, keeping systems in sync.
Security and verification compliance
Verify webhook payloads using signature validation keys to protect endpoints from unauthorized requests.
Explore Integrations
Explore modules compatible with this gateway integration.
Integration FAQs
Build Connected Workflows
Read our full developer reference library to map custom API webhooks in minutes.
